Endpoint Playground
Test Crawlora's Facet vehicle listings dataset API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/vehicle-listings/facets?facet=source&source=carmax&seller_type=retailer" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | source | Facet enum: source, make, model, trim, body_style, transmission, drive_type, fuel_type, seller_type, state, run_id |
| q | string | No | Full-text query over make, model and trim, max 256 characters | |
| source | string | No | carmax | Exact source marketplace filter: carmax, autotrader, carsdotcom |
| make | string | No | Exact make filter, max 128 characters | |
| model | string | No | Exact model filter, max 128 characters | |
| trim | string | No | Exact trim filter, max 128 characters | |
| body_style | string | No | Exact body style filter, max 128 characters | |
| transmission | string | No | Exact transmission filter, max 128 characters | |
| drive_type | string | No | Exact drivetrain filter, max 128 characters | |
| fuel_type | string | No | Exact fuel type filter, max 128 characters | |
| seller_type | string | No | retailer | Exact seller type filter: retailer, dealer, private |
| state | string | No | Exact US state abbreviation filter, max 8 characters | |
| vin | string | No | Exact VIN filter | |
| run_id | string | No | Exact crawl run-id filter, max 128 characters | |
| is_price_reduced | boolean | No | Filter for listings currently marked down from a previous price | |
| min_year | integer | No | Minimum model year | |
| max_year | integer | No | Maximum model year | |
| min_price | number | No | Minimum price in US dollars | |
| max_price | number | No | Maximum price in US dollars | |
| max_mileage | integer | No | Maximum odometer mileage |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "vehicle-listings",
"facet": "make",
"items": [
{
"value": "Toyota",
"count": 4213
},
{
"value": "Honda",
"count": 3897
},
{
"value": "Ford",
"count": 3512
}
]
}
}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 terms aggregation counts for the vehicle listings dataset. Facet enum: `source`, `make`, `model`, `trim`, `body_style`, `transmission`, `drive_type`, `fuel_type`, `seller_type`, `state`, `run_id`. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "vehicle-listings",
"facet": "make",
"items": [
{
"value": "Toyota",
"count": 4213
},
{
"value": "Honda",
"count": 3897
},
{
"value": "Ford",
"count": 3512
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/vehicle-listings/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"