Endpoint Playground
Test Crawlora's CarMax store 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/carmax/store/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | CarMax store id, the numeric path segment of a /stores/{id} URL |
{
"code": 200,
"msg": "OK",
"data": {
"id": 7124,
"name": "Canoga Park",
"address_line1": "21300 Roscoe Blvd",
"city": "Los Angeles",
"state": "CA",
"state_abbreviation": "CA",
"zip_code": "91304",
"phone": "(818) 431-6000",
"toll_free_phone": "(833) 741-0489",
"latitude": 34.21972,
"longitude": -118.59617,
"hours": [
{
"start_day_of_week": 0,
"end_day_of_week": 0,
"open_time": "11:00:00",
"close_time": "19:00:00"
},
{
"start_day_of_week": 1,
"end_day_of_week": 5,
"open_time": "10:00:00",
"close_time": "21:00:00"
},
{
"start_day_of_week": 6,
"end_day_of_week": 6,
"open_time": "09:00:00",
"close_time": "21:00:00"
}
],
"is_car_buying_center": false,
"is_microstore": false,
"active_status": "Active",
"url": "https://www.carmax.com/stores/7124",
"source_url": "https://www.carmax.com/stores/7124"
}
}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 CarMax store: name, full address, phone numbers, coordinates, opening hours, and store-type flags (car buying center, microstore). Credential-free public data sourced from CarMax's own server-rendered store page.
{
"code": 200,
"msg": "OK",
"data": {
"id": 7124,
"name": "Canoga Park",
"address_line1": "21300 Roscoe Blvd",
"city": "Los Angeles",
"state": "CA",
"state_abbreviation": "CA",
"zip_code": "91304",
"phone": "(818) 431-6000",
"toll_free_phone": "(833) 741-0489",
"latitude": 34.21972,
"longitude": -118.59617,
"hours": [
{
"start_day_of_week": 0,
"end_day_of_week": 0,
"open_time": "11:00:00",
"close_time": "19:00:00"
},
{
"start_day_of_week": 1,
"end_day_of_week": 5,
"open_time": "10:00:00",
"close_time": "21:00:00"
},
{
"start_day_of_week": 6,
"end_day_of_week": 6,
"open_time": "09:00:00",
"close_time": "21:00:00"
}
],
"is_car_buying_center": false,
"is_microstore": false,
"active_status": "Active",
"url": "https://www.carmax.com/stores/7124",
"source_url": "https://www.carmax.com/stores/7124"
}
}curl "https://api.crawlora.net/api/v1/carmax/store/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"