# Yellowpages (Australia) — 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 Australian businesses by category to find contact details, addresses, and emails, then retrieve comprehensive business information for any listing. Perfect for building lead lists, verifying business information, or discovering local service providers across Australia.

**Category:** Business Directories | **Website:** [yellowpages.com.au/](https://yellowpages.com.au/) | **Docs:** [parse.bot/marketplace/e5b0dc98-1dbb-45dd-97c1-623cd2d70767/yellowpages-com-au-api](https://parse.bot/marketplace/e5b0dc98-1dbb-45dd-97c1-623cd2d70767/yellowpages-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-yellowpages-com-au-api-e5b0dc98/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_business_details

Get detailed information for a specific business listing from its Yellow Pages URL. Returns name, full address components, phone, email, website, opening hours, and category. Use the details_url from search_listings results. A single round-trip fetch per listing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | The Yellow Pages listing URL for the business to retrieve (details_url from search_listings results, e.g. 'https://www.yellowpages.com.au/sydney-nsw/bpp/<business-slug-id>'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yellowpages-com-au-api-e5b0dc98/get_business_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_listings

Search for business listings on Yellow Pages Australia by category and location. Returns up to 30 listings per page with name, address, phone, website, category, and a details URL for fetching full business information. Paginates via an integer page counter; each page returns up to 30 results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `clue` | string | Yes | Business category or name to search for (e.g. 'Restaurants', 'Dentists', 'Plumbers'). Used as a URL slug so multi-word terms are hyphenated internally. |
| `location` | string | No | Location to search within, formatted as 'City STATE' (e.g. 'Sydney NSW', 'Melbourne VIC', 'Brisbane QLD'). Omitting searches all of Australia. |
| `max_pages` | integer | No | Number of pages to fetch per request. Each page returns up to 30 listings. |
| `page` | integer | No | Page number (1-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yellowpages-com-au-api-e5b0dc98/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"clue":"<string>","location":"<string>","max_pages":"<integer>","page":"<integer>"}'
```
