# Autobidmaster — 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 vehicle auction inventory with detailed lot information, filters by make, type, body style, and damage condition, plus discover featured items and auction locations. Find the perfect vehicle by accessing comprehensive inventory data and exploring popular makes and damage types across AutoBidMaster auctions.

**Category:** Automotive | **Website:** [autobidmaster.com/](https://autobidmaster.com/) | **Docs:** [parse.bot/marketplace/2e82d507-9040-45f5-94a3-0c0e6a96df28/autobidmaster-com-api](https://parse.bot/marketplace/2e82d507-9040-45f5-94a3-0c0e6a96df28/autobidmaster-com-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-autobidmaster-com-api-2e82d507/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_auction_locations

Returns auction yard/sale locations across the US and Canada with listing counts. Locations are identified by state/province code and city slug.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autobidmaster-com-api-2e82d507/get_auction_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_body_styles

Returns all body style categories (Sedan, SUV, Pickup Truck, Hatchback, etc.) with listing counts.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autobidmaster-com-api-2e82d507/get_body_styles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_damage_types

Returns all damage type categories (Front End, Rear End, Hail, Side, Rollover, etc.) with listing counts.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autobidmaster-com-api-2e82d507/get_damage_types \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_featured_items

Returns featured auction categories (Clean Title, Buy It Now, Pure Sale Items, Electric, Hybrid Engine, Insurance, Rental, etc.) with listing counts and filter section identifiers.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autobidmaster-com-api-2e82d507/get_featured_items \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_homepage_inventory

Returns homepage inventory summary data: popular makes, featured categories, and vehicle types. Each entry includes a display label, listing count, and navigation link.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autobidmaster-com-api-2e82d507/get_homepage_inventory \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_popular_makes

Returns all vehicle makes with listing counts, sorted by popularity. Each make includes a key, display label, and count of available listings. Useful for discovering available makes before searching.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autobidmaster-com-api-2e82d507/get_popular_makes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_vehicle_details

Get comprehensive details for a specific auction lot by lot number. Returns full vehicle information including all images, panoramas, damage details, sale status, title information, location coordinates, odometer, engine specs, and bid data. Lot numbers come from search_vehicles results. If the lot is not found, returns stale_input with kind input_not_found.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `auction` | string | No | Auction source. Currently only 'copart' is supported. |
| `lot_number` | string | Yes | Lot number (e.g., 74627395). Obtain from search_vehicles results field lotNumber. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autobidmaster-com-api-2e82d507/get_vehicle_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"auction":"<string>","lot_number":"<string>"}'
```

### get_vehicle_types

Returns all vehicle type categories (Cars, Motorcycles, ATVs, Pickup Trucks, etc.) with listing counts.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autobidmaster-com-api-2e82d507/get_vehicle_types \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_vehicles

Search vehicle auction listings with optional filters. Returns paginated lot summaries including year, make, model, damage, bid status, sale date, and location. Supports filtering by make, model, country, state, and free text. Pagination via page number; each page returns up to `size` lots. Sort by sale_date (default) or other fields.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Country filter in lowercase. Accepted values: usa, canada. |
| `make` | string | No | Vehicle make filter in lowercase (e.g., toyota, honda, ford). |
| `model` | string | No | Vehicle model filter in lowercase (e.g., camry, civic, f-150). |
| `order` | string | No | Sort order: asc or desc. |
| `page` | integer | No | Page number (1-based). |
| `query` | string | No | Free text search query. |
| `size` | integer | No | Results per page (max 100). |
| `sort` | string | No | Sort field. Currently only 'sale_date' is supported. |
| `state` | string | No | State filter in lowercase (e.g., california, texas, new-york). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autobidmaster-com-api-2e82d507/search_vehicles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","make":"<string>","model":"<string>","order":"<string>","page":"<integer>","query":"<string>","size":"<integer>","sort":"<string>","state":"<string>"}'
```
