Autotrader API endpoint
Use Crawlora's Autotrader vehicle listing detail 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/vehicle/{id}Returns a normalized Autotrader vehicle listing: full vehicle spec (make, model, trim, mileage, colors, transmission, fuel type, engine, images, pricing), the full listing description, and seller detail (dealership or private seller). Credential-free public data sourced from Autotrader's own server-rendered vehicle detail 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 |
|---|---|---|---|---|---|
| id (path) | string | Yes | Autotrader listing id, the numeric path segment of a /cars-for-sale/vehicle/{id} URL | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/autotrader/vehicle/example" \ -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.
- `id` must be numeric; a non-numeric value returns `400` before any upstream request is made. - A listing id that is well-formed but no longer exists (sold, removed, or never existed) returns `404`, not an empty `200`. - `dealer` is omitted when Autotrader's page does not carry a resolvable seller record for the listing (parser drift or an incomplete listing). - `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. - `similar_listings` is a list of normalized vehicle summaries (the same shape as a search result, not full detail) for other listings Autotrader surfaces as similar on the same page. It is omitted when Autotrader's page does not carry a similar-listings shelf for this vehicle. Example response: ```json { "code": 200, "msg": "OK", "data": { "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"}, "mileage": {"label": "Mileage", "value": "1,111"}, "color": {"exterior_color": "Ocean Blue Metallic", "exterior_color_simple": "BLUE", "interior_color": "Sandstone With Ebony"}, "transmission": {"code": "AUT", "name": "Automatic", "description": "8-Speed Automatic"}, "fuel_type": {"code": "G", "name": "Gasoline", "group": "Gas"}, "drive_type": {"name": "AWD4WD", "description": "All wheel drive"}, "engine": {"code": "4CLDR", "name": "4-Cylinder Turbo"}, "mpg_city": 20, "mpg_highway": 25, "listing_type": "NEW", "stock_id": "TJ113378", "packages": ["Power Package", "LPO, Floor Liner Package"], "vehicle_history_flags": ["NO_SALVAGE_TITLE", "NO_ACCIDENTS_REPORTED"], "pricing": {"sale_price": 45235, "msrp": 53055, "dealer_discounted_price": 46985, "display_price": 45235}, "description": "This 2026 Buick Enclave Preferred in Ocean Blue Metallic comes with the following features: ...", "dealer": { "id": 64141623, "name": "Chuck Nash Chevrolet Buick GMC", "phone": "7373444772", "address1": "3209 N I 35", "city": "San Marcos", "state": "TX", "zip": "78666", "rating": 4.7, "rating_count": 4332, "is_private_seller": false }, "url": "https://www.autotrader.com/cars-for-sale/vehicle/754822172", "similar_listings": [ { "id": 754822999, "title": "New 2026 Buick Enclave Essence", "year": 2026, "make": {"code": "BUICK", "name": "Buick"}, "model": {"code": "ENCLAVE", "name": "Enclave"}, "pricing": {"sale_price": 47995, "msrp": 55000, "display_price": 47995}, "url": "https://www.autotrader.com/cars-for-sale/vehicle/754822999" } ], "source_url": "https://www.autotrader.com/cars-for-sale/vehicle/754822172" } } ```
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 |
| 404 | Not Found | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"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"
},
"mileage": {
"label": "Mileage",
"value": "1,111"
},
"color": {
"exterior_color": "Ocean Blue Metallic",
"exterior_color_simple": "BLUE",
"interior_color": "Sandstone With Ebony"
},
"transmission": {
"code": "AUT",
"name": "Automatic",
"description": "8-Speed Automatic"
},
"fuel_type": {
"code": "G",
"name": "Gasoline",
"group": "Gas"
},
"drive_type": {
"name": "AWD4WD",
"description": "All wheel drive"
},
"engine": {
"code": "4CLDR",
"name": "4-Cylinder Turbo"
},
"mpg_city": 20,
"mpg_highway": 25,
"listing_type": "NEW",
"stock_id": "TJ113378",
"packages": [
"Power Package",
"LPO, Floor Liner Package"
],
"vehicle_history_flags": [
"NO_SALVAGE_TITLE",
"NO_ACCIDENTS_REPORTED"
],
"pricing": {
"sale_price": 45235,
"msrp": 53055,
"dealer_discounted_price": 46985,
"display_price": 45235
},
"description": "This 2026 Buick Enclave Preferred in Ocean Blue Metallic comes with the following features: ...",
"dealer": {
"id": 64141623,
"name": "Chuck Nash Chevrolet Buick GMC",
"phone": "7373444772",
"address1": "3209 N I 35",
"city": "San Marcos",
"state": "TX",
"zip": "78666",
"rating": 4.7,
"rating_count": 4332,
"is_private_seller": false
},
"url": "https://www.autotrader.com/cars-for-sale/vehicle/754822172",
"similar_listings": [
{
"id": 754822999,
"title": "New 2026 Buick Enclave Essence",
"year": 2026,
"make": {
"code": "BUICK",
"name": "Buick"
},
"model": {
"code": "ENCLAVE",
"name": "Enclave"
},
"pricing": {
"sale_price": 47995,
"msrp": 55000,
"display_price": 47995
},
"url": "https://www.autotrader.com/cars-for-sale/vehicle/754822999"
}
],
"source_url": "https://www.autotrader.com/cars-for-sale/vehicle/754822172"
}
}Request schema
No body schema
Response schema
#/definitions/autotrader.VehicleResponse
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| body_styles | array | No | ||||
| body_styles[].code | string | No | SEDAN | |||
| body_styles[].name | string | No | Sedan | |||
| color | autotrader.Color | No | ||||
| color.exterior_color | string | No | Ocean Blue Metallic | |||
| color.exterior_color_simple | string | No | BLUE | |||
| color.interior_color | string | No | Sandstone With Ebony | |||
| color.interior_color_simple | string | No | BEIGE | |||
| days_on_site | integer | No | 252 | |||
| dealer | autotrader.Dealer | No | ||||
| dealer.address1 | string | No | 3209 N I 35 | |||
| dealer.city | string | No | San Marcos | |||
| dealer.id | integer | No | 64141623 | |||
| dealer.is_private_seller | boolean | No | ||||
| dealer.is_virtual | boolean | No | ||||
| dealer.latitude | number | No | 29.936132 | |||
| dealer.longitude | number | No | -97.886856 | |||
| dealer.name | string | No | Chuck Nash Chevrolet Buick GMC | |||
| dealer.phone | string | No | 7373444772 | |||
| dealer.rating | number | No | 4.7 | |||
| dealer.rating_count | integer | No | 4332 | |||
| dealer.state | string | No | TX | |||
| dealer.url | string | No | https://www.autotrader.com/car-dealers/san-marcos-tx/64141623/chuck-nash-chevrolet-buick-gmc | |||
| dealer.website | string | No | ||||
| dealer.zip | string | No | 78666 | |||
| description | string | No | ||||
| drive_type | autotrader.DriveType | No | ||||
| drive_type.description | string | No | All wheel drive | |||
| drive_type.name | string | No | AWD4WD | |||
| engine | autotrader.Engine | No | ||||
| engine.code | string | No | 4CLDR | |||
| engine.name | string | No | 4-Cylinder Turbo | |||
| fuel_type | autotrader.FuelType | No | ||||
| fuel_type.code | string | No | G | |||
| fuel_type.group | string | No | Gas | |||
| fuel_type.name | string | No | Gasoline | |||
| id | integer | No | 754822172 | |||
| images | array | No | ||||
| images[].alt | string | No | ||||
| images[].height | integer | No | 768 | |||
| images[].url | string | No | https://images.autotrader.com/hn/c/fea7bff2bfac481fbca3f5fa4d09a2d5.jpg | |||
| images[].width | integer | No | 1024 | |||
| is_hot | boolean | No | ||||
| is_newly_listed | boolean | No | ||||
| is_reduced_price | boolean | No | ||||
| listing_type | string | No | NEW | |||
| make | autotrader.Make | No | ||||
| make.code | string | No | TOYOTA | |||
| make.name | string | No | Toyota | |||
| mileage | autotrader.Mileage | No | ||||
| mileage.label | string | No | Mileage | |||
| mileage.value | string | No | 1,111 | |||
| model | autotrader.Model | No | ||||
| model.code | string | No | CAMRY | |||
| model.name | string | No | Camry | |||
| mpg_city | integer | No | 20 | |||
| mpg_highway | integer | No | 25 | |||
| owner_id | integer | No | 64141623 | |||
| packages | array | No | Power Package,LPO Floor Liner Package | |||
| pricing | autotrader.Pricing | No | ||||
| pricing.dealer_discounted_price | number | No | 46985 | |||
| pricing.display_price | number | No | 45235 | |||
| pricing.msrp | number | No | 53055 | |||
| pricing.no_price_label | string | No | Contact Dealer For Price | |||
| pricing.sale_price | number | No | 45235 | |||
| similar_listings | array | No | ||||
| similar_listings[].body_styles | array | No | ||||
| similar_listings[].body_styles[].code | string | No | SEDAN | |||
| similar_listings[].body_styles[].name | string | No | Sedan | |||
| similar_listings[].color | autotrader.Color | No | ||||
| similar_listings[].color.exterior_color | string | No | Ocean Blue Metallic | |||
| similar_listings[].color.exterior_color_simple | string | No | BLUE | |||
| similar_listings[].color.interior_color | string | No | Sandstone With Ebony | |||
| similar_listings[].color.interior_color_simple | string | No | BEIGE | |||
| similar_listings[].days_on_site | integer | No | 252 | |||
| similar_listings[].drive_type | autotrader.DriveType | No | ||||
| similar_listings[].drive_type.description | string | No | All wheel drive | |||
| similar_listings[].drive_type.name | string | No | AWD4WD | |||
| similar_listings[].engine | autotrader.Engine | No | ||||
| similar_listings[].engine.code | string | No | 4CLDR | |||
| similar_listings[].engine.name | string | No | 4-Cylinder Turbo | |||
| similar_listings[].fuel_type | autotrader.FuelType | No | ||||
| similar_listings[].fuel_type.code | string | No | G | |||
| similar_listings[].fuel_type.group | string | No | Gas | |||
| similar_listings[].fuel_type.name | string | No | Gasoline | |||
| similar_listings[].id | integer | No | 754822172 | |||
| similar_listings[].images | array | No | ||||
| similar_listings[].images[].alt | string | No | ||||
| similar_listings[].images[].height | integer | No | 768 | |||
| similar_listings[].images[].url | string | No | https://images.autotrader.com/hn/c/fea7bff2bfac481fbca3f5fa4d09a2d5.jpg | |||
| similar_listings[].images[].width | integer | No | 1024 | |||
| similar_listings[].is_hot | boolean | No | ||||
| similar_listings[].is_newly_listed | boolean | No | ||||
| similar_listings[].is_reduced_price | boolean | No | ||||
| similar_listings[].listing_type | string | No | NEW | |||
| similar_listings[].make | autotrader.Make | No | ||||
| similar_listings[].make.code | string | No | TOYOTA | |||
| similar_listings[].make.name | string | No | Toyota | |||
| similar_listings[].mileage | autotrader.Mileage | No | ||||
| similar_listings[].mileage.label | string | No | Mileage | |||
| similar_listings[].mileage.value | string | No | 1,111 | |||
| similar_listings[].model | autotrader.Model | No | ||||
| similar_listings[].model.code | string | No | CAMRY | |||
| similar_listings[].model.name | string | No | Camry | |||
| similar_listings[].mpg_city | integer | No | 20 | |||
| similar_listings[].mpg_highway | integer | No | 25 | |||
| similar_listings[].owner_id | integer | No | 64141623 | |||
| similar_listings[].packages | array | No | Power Package,LPO Floor Liner Package | |||
| similar_listings[].pricing | autotrader.Pricing | No | ||||
| similar_listings[].pricing.dealer_discounted_price | number | No | 46985 | |||
| similar_listings[].pricing.display_price | number | No | 45235 | |||
| similar_listings[].pricing.msrp | number | No | 53055 | |||
| similar_listings[].pricing.no_price_label | string | No | Contact Dealer For Price | |||
| similar_listings[].pricing.sale_price | number | No | 45235 | |||
| similar_listings[].stock_id | string | No | TJ113378 | |||
| similar_listings[].title | string | No | New 2026 Buick Enclave Preferred w/ Power Package | |||
| similar_listings[].title_long | string | No | New 2026 Buick Enclave Preferred w/ Power Package San Marcos TX 78666 | |||
| similar_listings[].transmission | autotrader.Transmission | No | ||||
| similar_listings[].transmission.code | string | No | AUT | |||
| similar_listings[].transmission.description | string | No | 8-Speed Automatic | |||
| similar_listings[].transmission.group | string | No | Automatic | |||
| similar_listings[].transmission.name | string | No | Automatic | |||
| similar_listings[].trim | autotrader.Trim | No | ||||
| similar_listings[].trim.code | string | No | CAMRY|LE | |||
| similar_listings[].trim.name | string | No | LE | |||
| similar_listings[].url | string | No | https://www.autotrader.com/cars-for-sale/vehicle/754822172 | |||
| similar_listings[].vehicle_history_flags | array | No | NO_SALVAGE_TITLE,NO_ACCIDENTS_REPORTED | |||
| similar_listings[].vin | string | No | 5GAEVAKS4TJ113378 | |||
| similar_listings[].year | integer | No | 2026 | |||
| source_url | string | No | ||||
| stock_id | string | No | TJ113378 | |||
| title | string | No | New 2026 Buick Enclave Preferred w/ Power Package | |||
| title_long | string | No | New 2026 Buick Enclave Preferred w/ Power Package San Marcos TX 78666 | |||
| transmission | autotrader.Transmission | No | ||||
| transmission.code | string | No | AUT | |||
| transmission.description | string | No | 8-Speed Automatic | |||
| transmission.group | string | No | Automatic | |||
| transmission.name | string | No | Automatic | |||
| trim | autotrader.Trim | No | ||||
| trim.code | string | No | CAMRY|LE | |||
| trim.name | string | No | LE | |||
| url | string | No | https://www.autotrader.com/cars-for-sale/vehicle/754822172 | |||
| vehicle_history_flags | array | No | NO_SALVAGE_TITLE,NO_ACCIDENTS_REPORTED | |||
| vin | string | No | 5GAEVAKS4TJ113378 | |||
| year | integer | No | 2026 |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/autotrader/vehicle/example" \
-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