Endpoint Playground
Test Crawlora's Facet the Numbeo cities 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/numbeo-cities/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | Facet enum: country | |
| q | string | No | Full-text query over the city name, max 256 characters | |
| country | string | No | Exact country filter, max 128 characters | |
| min_cost_of_living_index | number | No | Minimum Cost of Living Index (New York = 100) | |
| max_cost_of_living_index | number | No | Maximum Cost of Living Index (New York = 100) | |
| min_quality_of_life_index | number | No | Minimum Quality of Life Index | |
| min_crime_index | number | No | Minimum Crime Index | |
| max_crime_index | number | No | Maximum Crime Index | |
| min_safety_index | number | No | Minimum Safety Index | |
| min_health_care_index | number | No | Minimum Health Care Index | |
| max_pollution_index | number | No | Maximum Pollution Index | |
| max_traffic_index | number | No | Maximum Traffic Index |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "numbeo-cities",
"facet": "country",
"items": [
{
"value": "United States",
"count": 180
},
{
"value": "Germany",
"count": 42
}
]
}
}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 Numbeo cities dataset. Facet enum: `country`. 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": "numbeo-cities",
"facet": "country",
"items": [
{
"value": "United States",
"count": 180
},
{
"value": "Germany",
"count": 42
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/numbeo-cities/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"