# Auctioneers — 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 retrieve professional auctioneer profiles from the National Auction Association (NAA) member directory. Filter by location, specialty category, and professional designation, and access full contact and bio details for individual members.

**Category:** Business Directories | **Website:** [auctioneers.org/](https://auctioneers.org/) | **Docs:** [parse.bot/marketplace/52da3c6d-fbfd-41b9-b0ac-f3c241740807/auctioneers-org-api](https://parse.bot/marketplace/52da3c6d-fbfd-41b9-b0ac-f3c241740807/auctioneers-org-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-auctioneers-org-api-52da3c6d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_auctioneer_profile

Get the detailed profile page for a specific auctioneer by their slug. Returns bio, contact details, social links, and membership dates. The slug is obtained from search_auctioneers results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Auctioneer slug from search_auctioneers results (e.g. 'ted-odle', 'marty-murad'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-auctioneers-org-api-52da3c6d/get_auctioneer_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_auctioneer_categories

List all available auction specialty categories. These category slugs can be used as the category filter in search_auctioneers.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-auctioneers-org-api-52da3c6d/list_auctioneer_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_naa_designations

List all NAA professional designations. These designation values can be used as the designation filter in search_auctioneers.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-auctioneers-org-api-52da3c6d/list_naa_designations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_auctioneers

Search for auctioneers in the NAA directory with optional filters for location, specialty category, and designation. Returns paginated results. Supports filtering by state, city, ZIP, specialty category slug, NAA designation slug, and state-licensed. Pagination is zero-indexed.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Specialty category slug from list_auctioneer_categories (e.g. 'antiques-and-collectibles', 'real-estate-land'). |
| `city` | string | No | Filter by city name. |
| `designation` | string | No | NAA designation slug from list_naa_designations. |
| `limit` | integer | No | Results per page. |
| `page` | integer | No | Page number (0-indexed). |
| `query` | string | No | Search by keyword. |
| `state` | string | No | Filter by state/province abbreviation (e.g. 'TX', 'CA'). |
| `state_licensed` | string | No | Filter by state licensed in (slug). |
| `zip` | string | No | Filter by zip/postal code. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-auctioneers-org-api-52da3c6d/search_auctioneers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","city":"<string>","designation":"<string>","limit":"<integer>","page":"<integer>","query":"<string>","state":"<string>","state_licensed":"<string>","zip":"<string>"}'
```
