Endpoint Playground
Test Crawlora's Cars.com 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/carsdotcom/search?stock_type=new" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| zip | string | No | 5-digit US ZIP code to search around | |
| radius | integer | No | Search radius in miles around zip | |
| stock_type | string | No | new | Listing condition. Allowed values: new, used, cpo, all |
| page | integer | No | 1-indexed result page, defaults to 1. Cars.com returns 24 results per page |
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 10000,
"page": 1,
"page_size": 24,
"vehicles": [
{
"listing_id": "a6ea5d6f-0395-4f9d-94d5-724c4d7414de",
"vin": "JTHKD5BH9G2270550",
"year": 2016,
"make": "Lexus",
"model": "CT 200h",
"trim": "Base",
"body_style": "Hatchback",
"mileage": 63436,
"exterior_color": "white",
"drivetrain": "Front-wheel Drive",
"fuel_type": "Hybrid",
"stock_type": "Used",
"price": 21992,
"seller": {
"dealer_name": "Lexus of Cerritos",
"zip": "90703"
},
"images": [
"https://platform.cstatic-images.com/large/in/v2/2b36ae52-fc12-53e4-9ae5-6d931aec6878/1f5784d2-4853-48a2-9ccb-e56f0fd2c59f/7IaYP6lvanG6iPgFM2TPpNxb5gY.jpg"
],
"url": "https://www.cars.com/vehicledetail/a6ea5d6f-0395-4f9d-94d5-724c4d7414de/"
}
],
"source_url": "https://graph.cars.com/graphql/api"
}
}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 Cars.com for new and used car listings, returning normalized vehicle summaries (make, model, trim, year, mileage, exterior color, drivetrain, fuel type, pricing, seller, images) plus the total matching count. Credential-free public data sourced directly from Cars.com's own public search API.
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 10000,
"page": 1,
"page_size": 24,
"vehicles": [
{
"listing_id": "a6ea5d6f-0395-4f9d-94d5-724c4d7414de",
"vin": "JTHKD5BH9G2270550",
"year": 2016,
"make": "Lexus",
"model": "CT 200h",
"trim": "Base",
"body_style": "Hatchback",
"mileage": 63436,
"exterior_color": "white",
"drivetrain": "Front-wheel Drive",
"fuel_type": "Hybrid",
"stock_type": "Used",
"price": 21992,
"seller": {
"dealer_name": "Lexus of Cerritos",
"zip": "90703"
},
"images": [
"https://platform.cstatic-images.com/large/in/v2/2b36ae52-fc12-53e4-9ae5-6d931aec6878/1f5784d2-4853-48a2-9ccb-e56f0fd2c59f/7IaYP6lvanG6iPgFM2TPpNxb5gY.jpg"
],
"url": "https://www.cars.com/vehicledetail/a6ea5d6f-0395-4f9d-94d5-724c4d7414de/"
}
],
"source_url": "https://graph.cars.com/graphql/api"
}
}curl "https://api.crawlora.net/api/v1/carsdotcom/search" \
-H "x-api-key: $CRAWLORA_API_KEY"