Endpoint Playground
Test Crawlora's Autotrader vehicle listing search 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/search?condition=new&body_style=convertible&seller_type=dealer" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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 | new | Listing condition. Allowed values: new, used, certified, 3p_cert |
| body_style | string | No | convertible | Body style. Allowed values: convertible, coupe, hatchback, sedan, suv, truck, van, wagon |
| seller_type | string | No | dealer | Seller type. 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-indexed result page, defaults to 1. Autotrader returns 24 results per page |
{
"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"
}
}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.
Searches 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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/autotrader/search" \
-H "x-api-key: $CRAWLORA_API_KEY"