Endpoint Playground
Test Crawlora's Autotrader vehicle listing detail 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/vehicle/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Autotrader listing id, the numeric path segment of a /cars-for-sale/vehicle/{id} URL |
{
"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"
}
}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 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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/autotrader/vehicle/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"