Autotrader API endpoint
Use Crawlora's Autotrader vehicle listing search API to extract supported public Autotrader data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/autotrader/searchSearches Autotrader for new and used car listings, returning normalized vehicle summaries (make, model, trim, year, mileage, pricing, images) plus the total matching count. Credential-free public data sourced from Autotrader's own server-rendered search page. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| query | string | No | Free-text keyword search | ||
| zip | string | No | 5-digit US ZIP code to search around | ||
| radius | integer | No | Search radius in miles around zip | ||
| make | string | No | Autotrader make code, e.g. TOYOTA, HONDA, BMW | ||
| model | string | No | Autotrader model code, e.g. CAMRY. Requires make | ||
| trim | string | No | Autotrader trim code. Requires make and model | ||
| condition | string | No | Listing condition. Allowed values: new, used, certified, 3p_cert Allowed values: new, used, certified, 3p_cert | ||
| body_style | string | No | Body style. Allowed values: convertible, coupe, hatchback, sedan, suv, truck, van, wagon Allowed values: convertible, coupe, hatchback, sedan, suv, truck, van, wagon | ||
| seller_type | string | No | Seller type. Allowed values: dealer, private Allowed values: dealer, private | ||
| min_year | integer | No | Minimum model year | ||
| max_year | integer | No | Maximum model year | ||
| min_price | integer | No | Minimum price in US dollars | ||
| max_price | integer | No | Maximum price in US dollars | ||
| max_mileage | integer | No | Maximum odometer mileage | ||
| page | integer | No | 1 | 1-indexed result page, defaults to 1. Autotrader returns 24 results per page | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/autotrader/search?query=coffee&condition=new&body_style=convertible&seller_type=dealer&page=1" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- `total_count` reflects Autotrader's full matching-result count for the applied filters, not just `len(vehicles)`. - An invalid `condition`, `body_style`, or `seller_type` value returns `400` before any upstream request is made. - A search with no matching listings returns `200` with `"vehicles": []` and `total_count: 0`, not an error. - `pricing.no_price_label` (e.g. `"Contact Dealer For Price"`) is set instead of a numeric price when the dealer requires direct contact for pricing. - `stats` reports price and model-year aggregates (min/average/max) across the FULL matching result set for the applied filters, not just the returned page — useful for market-research callers who want the shape of the whole matching inventory. It is omitted when Autotrader's page does not carry this aggregate for the request. Example response: ```json { "code": 200, "msg": "OK", "data": { "total_count": 3392288, "page": 1, "page_size": 24, "vehicles": [ { "id": 754822172, "vin": "5GAEVAKS4TJ113378", "title": "New 2026 Buick Enclave Preferred w/ Power Package", "year": 2026, "make": {"code": "BUICK", "name": "Buick"}, "model": {"code": "ENCLAVE", "name": "Enclave"}, "trim": {"code": "ENCLAVE|Preferred", "name": "Preferred"}, "body_styles": [{"code": "SUV", "name": "Sport Utility"}], "mileage": {"label": "Mileage", "value": "1,111"}, "color": {"exterior_color": "Ocean Blue Metallic", "exterior_color_simple": "BLUE"}, "transmission": {"code": "AUT", "name": "Automatic", "description": "8-Speed Automatic"}, "fuel_type": {"code": "G", "name": "Gasoline", "group": "Gas"}, "listing_type": "NEW", "days_on_site": 252, "pricing": {"sale_price": 45235, "msrp": 53055, "display_price": 45235}, "url": "https://www.autotrader.com/cars-for-sale/vehicle/754822172" } ], "stats": { "derived_price": {"max": 289995, "average": 34521.5, "min": 1500}, "year": {"max": 2026, "average": 2018.3, "min": 1960}, "start_year": 1960, "end_year": 2026, "min_price": 1500, "max_price": 289995 }, "source_url": "https://www.autotrader.com/cars-for-sale/all-cars" } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 3392288,
"page": 1,
"page_size": 24,
"vehicles": [
{
"id": 754822172,
"vin": "5GAEVAKS4TJ113378",
"title": "New 2026 Buick Enclave Preferred w/ Power Package",
"year": 2026,
"make": {
"code": "BUICK",
"name": "Buick"
},
"model": {
"code": "ENCLAVE",
"name": "Enclave"
},
"trim": {
"code": "ENCLAVE|Preferred",
"name": "Preferred"
},
"body_styles": [
{
"code": "SUV",
"name": "Sport Utility"
}
],
"mileage": {
"label": "Mileage",
"value": "1,111"
},
"color": {
"exterior_color": "Ocean Blue Metallic",
"exterior_color_simple": "BLUE"
},
"transmission": {
"code": "AUT",
"name": "Automatic",
"description": "8-Speed Automatic"
},
"fuel_type": {
"code": "G",
"name": "Gasoline",
"group": "Gas"
},
"listing_type": "NEW",
"days_on_site": 252,
"pricing": {
"sale_price": 45235,
"msrp": 53055,
"display_price": 45235
},
"url": "https://www.autotrader.com/cars-for-sale/vehicle/754822172"
}
],
"stats": {
"derived_price": {
"max": 289995,
"average": 34521.5,
"min": 1500
},
"year": {
"max": 2026,
"average": 2018.3,
"min": 1960
},
"start_year": 1960,
"end_year": 2026,
"min_price": 1500,
"max_price": 289995
},
"source_url": "https://www.autotrader.com/cars-for-sale/all-cars"
}
}Request schema
No body schema
Response schema
#/definitions/autotrader.searchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | autotrader.SearchResponse | No | ||||
| data.page | integer | No | 1 | |||
| data.page_size | integer | No | 24 | |||
| data.source_url | string | No | ||||
| data.stats | autotrader.SearchStats | No | ||||
| data.stats.derived_price | autotrader.StatRange | No | ||||
| data.stats.derived_price.average | number | No | 34521.5 | |||
| data.stats.derived_price.max | number | No | 89995 | |||
| data.stats.derived_price.min | number | No | 1500 | |||
| data.stats.end_year | integer | No | 2026 | |||
| data.stats.max_price | number | No | 89995 | |||
| data.stats.min_price | number | No | 1500 | |||
| data.stats.start_year | integer | No | 1960 | |||
| data.stats.year | autotrader.StatRange | No | ||||
| data.stats.year.average | number | No | 34521.5 | |||
| data.stats.year.max | number | No | 89995 | |||
| data.stats.year.min | number | No | 1500 | |||
| data.total_count | integer | No | 3392288 | |||
| data.vehicles | array | No | ||||
| data.vehicles[].body_styles | array | No | ||||
| data.vehicles[].body_styles[].code | string | No | SEDAN | |||
| data.vehicles[].body_styles[].name | string | No | Sedan | |||
| data.vehicles[].color | autotrader.Color | No | ||||
| data.vehicles[].color.exterior_color | string | No | Ocean Blue Metallic | |||
| data.vehicles[].color.exterior_color_simple | string | No | BLUE | |||
| data.vehicles[].color.interior_color | string | No | Sandstone With Ebony | |||
| data.vehicles[].color.interior_color_simple | string | No | BEIGE | |||
| data.vehicles[].days_on_site | integer | No | 252 | |||
| data.vehicles[].drive_type | autotrader.DriveType | No | ||||
| data.vehicles[].drive_type.description | string | No | All wheel drive | |||
| data.vehicles[].drive_type.name | string | No | AWD4WD | |||
| data.vehicles[].engine | autotrader.Engine | No | ||||
| data.vehicles[].engine.code | string | No | 4CLDR | |||
| data.vehicles[].engine.name | string | No | 4-Cylinder Turbo | |||
| data.vehicles[].fuel_type | autotrader.FuelType | No | ||||
| data.vehicles[].fuel_type.code | string | No | G | |||
| data.vehicles[].fuel_type.group | string | No | Gas | |||
| data.vehicles[].fuel_type.name | string | No | Gasoline | |||
| data.vehicles[].id | integer | No | 754822172 | |||
| data.vehicles[].images | array | No | ||||
| data.vehicles[].images[].alt | string | No | ||||
| data.vehicles[].images[].height | integer | No | 768 | |||
| data.vehicles[].images[].url | string | No | https://images.autotrader.com/hn/c/fea7bff2bfac481fbca3f5fa4d09a2d5.jpg | |||
| data.vehicles[].images[].width | integer | No | 1024 | |||
| data.vehicles[].is_hot | boolean | No | ||||
| data.vehicles[].is_newly_listed | boolean | No | ||||
| data.vehicles[].is_reduced_price | boolean | No | ||||
| data.vehicles[].listing_type | string | No | NEW | |||
| data.vehicles[].make | autotrader.Make | No | ||||
| data.vehicles[].make.code | string | No | TOYOTA | |||
| data.vehicles[].make.name | string | No | Toyota | |||
| data.vehicles[].mileage | autotrader.Mileage | No | ||||
| data.vehicles[].mileage.label | string | No | Mileage | |||
| data.vehicles[].mileage.value | string | No | 1,111 | |||
| data.vehicles[].model | autotrader.Model | No | ||||
| data.vehicles[].model.code | string | No | CAMRY | |||
| data.vehicles[].model.name | string | No | Camry | |||
| data.vehicles[].mpg_city | integer | No | 20 | |||
| data.vehicles[].mpg_highway | integer | No | 25 | |||
| data.vehicles[].owner_id | integer | No | 64141623 | |||
| data.vehicles[].packages | array | No | Power Package,LPO Floor Liner Package | |||
| data.vehicles[].pricing | autotrader.Pricing | No | ||||
| data.vehicles[].pricing.dealer_discounted_price | number | No | 46985 | |||
| data.vehicles[].pricing.display_price | number | No | 45235 | |||
| data.vehicles[].pricing.msrp | number | No | 53055 | |||
| data.vehicles[].pricing.no_price_label | string | No | Contact Dealer For Price | |||
| data.vehicles[].pricing.sale_price | number | No | 45235 | |||
| data.vehicles[].stock_id | string | No | TJ113378 | |||
| data.vehicles[].title | string | No | New 2026 Buick Enclave Preferred w/ Power Package | |||
| data.vehicles[].title_long | string | No | New 2026 Buick Enclave Preferred w/ Power Package San Marcos TX 78666 | |||
| data.vehicles[].transmission | autotrader.Transmission | No | ||||
| data.vehicles[].transmission.code | string | No | AUT | |||
| data.vehicles[].transmission.description | string | No | 8-Speed Automatic | |||
| data.vehicles[].transmission.group | string | No | Automatic | |||
| data.vehicles[].transmission.name | string | No | Automatic | |||
| data.vehicles[].trim | autotrader.Trim | No | ||||
| data.vehicles[].trim.code | string | No | CAMRY|LE | |||
| data.vehicles[].trim.name | string | No | LE | |||
| data.vehicles[].url | string | No | https://www.autotrader.com/cars-for-sale/vehicle/754822172 | |||
| data.vehicles[].vehicle_history_flags | array | No | NO_SALVAGE_TITLE,NO_ACCIDENTS_REPORTED | |||
| data.vehicles[].vin | string | No | 5GAEVAKS4TJ113378 | |||
| data.vehicles[].year | integer | No | 2026 | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/autotrader/search?query=coffee&condition=new&body_style=convertible&seller_type=dealer&page=1" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms