Endpoint Playground
Test Crawlora's Autotrader dealer profile API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/autotrader/dealer/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Autotrader dealer/owner id, the numeric path segment of a /car-dealers/{id} URL |
{
"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"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/autotrader/dealer/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"