# ServiceSeeking — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse job postings and local service providers across Australia on ServiceSeeking.com.au. View detailed business profiles, ratings, pricing, and explore hundreds of service categories — from tradespeople to home services and beyond.

**Category:** Business Directories | **Website:** [serviceseeking.com.au/](https://serviceseeking.com.au/) | **Docs:** [parse.bot/marketplace/660ef9f9-407c-4df0-abdb-26899f58241f/serviceseeking-com-au-api](https://parse.bot/marketplace/660ef9f9-407c-4df0-abdb-26899f58241f/serviceseeking-com-au-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-serviceseeking-com-au-api-660ef9f9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_categories

Get all available service categories with their slugs. Returns a comprehensive list of categories that can be used with get_category_listings to browse providers. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-serviceseeking-com-au-api-660ef9f9/get_all_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_business_profile

Get detailed profile information for a business, including name, rating, services, location, ABN, and website. The profile_url can be obtained from get_category_listings results. Returns structured business data extracted from the profile page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `profile_url` | string | Yes | The full URL of the business profile (e.g. 'https://www.serviceseeking.com.au/profile/101239'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-serviceseeking-com-au-api-660ef9f9/get_business_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"profile_url":"<string>"}'
```

### get_category_listings

Search for service providers in a specific category. Returns paginated business listings with name, location, rating, and pricing. Categories can be discovered via get_all_categories. Each listing includes a profile_url for fetching full details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | The category slug (e.g. 'removalists', 'cleaners', 'electricians', 'plumbers'). Use get_all_categories to discover valid slugs. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-serviceseeking-com-au-api-660ef9f9/get_category_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>"}'
```
