Autotrader API endpoint
Use Crawlora's Autotrader dealer profile 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/dealer/{id}Returns a normalized Autotrader dealer profile (name, phone, address, rating, website) plus a first page of the dealer's own current inventory as normalized vehicle summaries and the dealer's total listing count. Credential-free public data sourced from Autotrader's own server-rendered dealer profile 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 dealer/owner id, the numeric path segment of a /car-dealers/{id} URL | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/autotrader/dealer/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 dealer id that is well-formed but has no resolvable dealer record returns `404`, not an empty `200`. - `inventory` is a first batch of the dealer's own current listings (the page Autotrader itself renders), not the dealer's entire lot. `total_count` reports the dealer's true current listing count, which may be larger than `len(inventory)`. - `is_private_seller` is `true` for a private-individual seller profile rather than a dealership. Example response: ```json { "code": 200, "msg": "OK", "data": { "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/car-dealers/san-marcos-tx/64141623/chuck-nash-chevrolet-buick-gmc", "inventory": [ { "id": 754822172, "title": "New 2026 Buick Enclave Preferred w/ Power Package", "year": 2026, "make": {"code": "BUICK", "name": "Buick"}, "model": {"code": "ENCLAVE", "name": "Enclave"}, "pricing": {"sale_price": 45235, "msrp": 53055, "display_price": 45235}, "url": "https://www.autotrader.com/cars-for-sale/vehicle/754822172" } ], "total_count": 638, "source_url": "https://www.autotrader.com/car-dealers/64141623" } } ```
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": 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/car-dealers/san-marcos-tx/64141623/chuck-nash-chevrolet-buick-gmc",
"inventory": [
{
"id": 754822172,
"title": "New 2026 Buick Enclave Preferred w/ Power Package",
"year": 2026,
"make": {
"code": "BUICK",
"name": "Buick"
},
"model": {
"code": "ENCLAVE",
"name": "Enclave"
},
"pricing": {
"sale_price": 45235,
"msrp": 53055,
"display_price": 45235
},
"url": "https://www.autotrader.com/cars-for-sale/vehicle/754822172"
}
],
"total_count": 638,
"source_url": "https://www.autotrader.com/car-dealers/64141623"
}
}Request schema
No body schema
Response schema
#/definitions/autotrader.DealerResponse
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| address1 | string | No | 3209 N I 35 | |||
| city | string | No | San Marcos | |||
| id | integer | No | 64141623 | |||
| inventory | array | No | ||||
| inventory[].body_styles | array | No | ||||
| inventory[].body_styles[].code | string | No | SEDAN | |||
| inventory[].body_styles[].name | string | No | Sedan | |||
| inventory[].color | autotrader.Color | No | ||||
| inventory[].color.exterior_color | string | No | Ocean Blue Metallic | |||
| inventory[].color.exterior_color_simple | string | No | BLUE | |||
| inventory[].color.interior_color | string | No | Sandstone With Ebony | |||
| inventory[].color.interior_color_simple | string | No | BEIGE | |||
| inventory[].days_on_site | integer | No | 252 | |||
| inventory[].drive_type | autotrader.DriveType | No | ||||
| inventory[].drive_type.description | string | No | All wheel drive | |||
| inventory[].drive_type.name | string | No | AWD4WD | |||
| inventory[].engine | autotrader.Engine | No | ||||
| inventory[].engine.code | string | No | 4CLDR | |||
| inventory[].engine.name | string | No | 4-Cylinder Turbo | |||
| inventory[].fuel_type | autotrader.FuelType | No | ||||
| inventory[].fuel_type.code | string | No | G | |||
| inventory[].fuel_type.group | string | No | Gas | |||
| inventory[].fuel_type.name | string | No | Gasoline | |||
| inventory[].id | integer | No | 754822172 | |||
| inventory[].images | array | No | ||||
| inventory[].images[].alt | string | No | ||||
| inventory[].images[].height | integer | No | 768 | |||
| inventory[].images[].url | string | No | https://images.autotrader.com/hn/c/fea7bff2bfac481fbca3f5fa4d09a2d5.jpg | |||
| inventory[].images[].width | integer | No | 1024 | |||
| inventory[].is_hot | boolean | No | ||||
| inventory[].is_newly_listed | boolean | No | ||||
| inventory[].is_reduced_price | boolean | No | ||||
| inventory[].listing_type | string | No | NEW | |||
| inventory[].make | autotrader.Make | No | ||||
| inventory[].make.code | string | No | TOYOTA | |||
| inventory[].make.name | string | No | Toyota | |||
| inventory[].mileage | autotrader.Mileage | No | ||||
| inventory[].mileage.label | string | No | Mileage | |||
| inventory[].mileage.value | string | No | 1,111 | |||
| inventory[].model | autotrader.Model | No | ||||
| inventory[].model.code | string | No | CAMRY | |||
| inventory[].model.name | string | No | Camry | |||
| inventory[].mpg_city | integer | No | 20 | |||
| inventory[].mpg_highway | integer | No | 25 | |||
| inventory[].owner_id | integer | No | 64141623 | |||
| inventory[].packages | array | No | Power Package,LPO Floor Liner Package | |||
| inventory[].pricing | autotrader.Pricing | No | ||||
| inventory[].pricing.dealer_discounted_price | number | No | 46985 | |||
| inventory[].pricing.display_price | number | No | 45235 | |||
| inventory[].pricing.msrp | number | No | 53055 | |||
| inventory[].pricing.no_price_label | string | No | Contact Dealer For Price | |||
| inventory[].pricing.sale_price | number | No | 45235 | |||
| inventory[].stock_id | string | No | TJ113378 | |||
| inventory[].title | string | No | New 2026 Buick Enclave Preferred w/ Power Package | |||
| inventory[].title_long | string | No | New 2026 Buick Enclave Preferred w/ Power Package San Marcos TX 78666 | |||
| inventory[].transmission | autotrader.Transmission | No | ||||
| inventory[].transmission.code | string | No | AUT | |||
| inventory[].transmission.description | string | No | 8-Speed Automatic | |||
| inventory[].transmission.group | string | No | Automatic | |||
| inventory[].transmission.name | string | No | Automatic | |||
| inventory[].trim | autotrader.Trim | No | ||||
| inventory[].trim.code | string | No | CAMRY|LE | |||
| inventory[].trim.name | string | No | LE | |||
| inventory[].url | string | No | https://www.autotrader.com/cars-for-sale/vehicle/754822172 | |||
| inventory[].vehicle_history_flags | array | No | NO_SALVAGE_TITLE,NO_ACCIDENTS_REPORTED | |||
| inventory[].vin | string | No | 5GAEVAKS4TJ113378 | |||
| inventory[].year | integer | No | 2026 | |||
| is_private_seller | boolean | No | ||||
| is_virtual | boolean | No | ||||
| latitude | number | No | 29.936132 | |||
| longitude | number | No | -97.886856 | |||
| name | string | No | Chuck Nash Chevrolet Buick GMC | |||
| phone | string | No | 7373444772 | |||
| rating | number | No | 4.7 | |||
| rating_count | integer | No | 4332 | |||
| source_url | string | No | ||||
| state | string | No | TX | |||
| total_count | integer | No | 638 | |||
| url | string | No | https://www.autotrader.com/car-dealers/san-marcos-tx/64141623/chuck-nash-chevrolet-buick-gmc | |||
| website | string | No | ||||
| zip | string | No | 78666 |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/autotrader/dealer/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