# Carsandbids — 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.

> Browse live car auction listings from Cars & Bids to discover current enthusiast vehicle sales in real-time. Find detailed information about available auctions to track specific vehicles and bidding opportunities.

**Category:** Automotive | **Website:** [carsandbids.com/](https://carsandbids.com/) | **Docs:** [parse.bot/marketplace/00ef10f0-b2ba-41b8-a88a-4055e031dd32/carsandbids-com-api](https://parse.bot/marketplace/00ef10f0-b2ba-41b8-a88a-4055e031dd32/carsandbids-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-carsandbids-com-api-00ef10f0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_auctions

Retrieve live auctions from Cars & Bids. Returns vehicle details including title, current bid, auction end time, location, mileage, and auction URL. Results are sorted by the chosen criteria. The response includes a total count so callers can paginate through all available auctions by advancing the offset.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of auctions to return per request (1–100). |
| `offset` | integer | No | Number of auctions to skip for pagination. Use with limit to page through results. |
| `sort` | string | No | Sort order for auction results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-carsandbids-com-api-00ef10f0/list_auctions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","sort":"<string>"}'
```
