# AutoTrader Canada — 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 vehicle listings on AutoTrader.ca and retrieve detailed information including specifications, pricing, mileage, and seller contact details. Compare listings across makes, models, and locations to support vehicle research and purchasing decisions.

**Category:** Automotive | **Website:** [autotrader.ca/](https://autotrader.ca/) | **Docs:** [parse.bot/marketplace/17f38610-10ed-4f84-a76c-34ccc296ba3a/autotrader-ca-api](https://parse.bot/marketplace/17f38610-10ed-4f84-a76c-34ccc296ba3a/autotrader-ca-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-autotrader-ca-api-17f38610/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Retrieve full details for a specific vehicle listing on AutoTrader.ca. Requires the listing URL obtained from search_listings results. Returns complete specifications, seller contact details, pricing breakdown, description, and all listing images. Expired or removed listings return input_not_found.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | The full AutoTrader.ca listing URL from search_listings results[*].url |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autotrader-ca-api-17f38610/get_listing_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_listings

Search vehicle listings on AutoTrader.ca. Filters by make, location, and sort order. Returns paginated results with total count. Each listing includes summary vehicle info (make, model, year, price, mileage, condition, location, transmission, fuel type) plus a URL for drilling into full details via get_listing_details. Pagination is manual via offset/limit.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page |
| `location` | string | No | Location for the search in City, Province format (e.g. Toronto, ON; Vancouver, BC) |
| `make` | string | No | Filter by vehicle make (e.g. Honda, Toyota, Ford, Mercedes-Benz). Omitting returns all makes. |
| `offset` | integer | No | Result offset for pagination (0-based item index) |
| `sort` | integer | No | Sort order: 3 = Price High to Low, 4 = Price Low to High |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autotrader-ca-api-17f38610/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","location":"<string>","make":"<string>","offset":"<integer>","sort":"<integer>"}'
```
