Endpoint Playground
Test Crawlora's CarMax Search Suggestions 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/search/suggestions?search=<search>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| search | string | Yes | Free-text partial search term to get autocomplete suggestions for | |
| exact_match | boolean | No | Disable fuzzy/typo-tolerant matching -- require an exact prefix match. Defaults to false |
{
"code": 200,
"msg": "OK",
"data": {
"suggestions": [
{
"term": "Honda Civic",
"category": "MakeModel"
},
{
"term": "Honda Civic Sport",
"category": "MakeModelTrim"
},
{
"term": "Honda Civic LX",
"category": "MakeModelTrim"
},
{
"term": "Honda Civic Type R",
"category": "MakeModelTrim"
}
],
"source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/search/suggestions?isFuzzy=true&search=civ"
}
}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 autocomplete suggestions for a partial search term (make/model/trim), typo-tolerant by default. Credential-free public data sourced from CarMax's own mobile-app API.
{
"code": 200,
"msg": "OK",
"data": {
"suggestions": [
{
"term": "Honda Civic",
"category": "MakeModel"
},
{
"term": "Honda Civic Sport",
"category": "MakeModelTrim"
},
{
"term": "Honda Civic LX",
"category": "MakeModelTrim"
},
{
"term": "Honda Civic Type R",
"category": "MakeModelTrim"
}
],
"source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/search/suggestions?isFuzzy=true&search=civ"
}
}curl "https://api.crawlora.net/api/v1/carmax/search/suggestions?search=<search>" \
-H "x-api-key: $CRAWLORA_API_KEY"