Endpoint Playground
Test Crawlora's Search 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/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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 | |
| sort | string | No | Sort enum: name_asc, cost_of_living_asc, cost_of_living_desc, quality_of_life_desc, safety_desc, crime_asc, health_care_desc, pollution_asc, traffic_asc | |
| page | integer | No | Page number, defaults to 1 | |
| page_size | integer | No | Page size, defaults to 20 and maxes at 100; page * page_size must be <= 10000 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "numbeo-cities",
"items": [
{
"city_slug": "Zurich",
"city": "Zurich, Switzerland",
"country": "Switzerland",
"coverage": [
"cost-of-living",
"quality-of-life",
"crime"
],
"cost_of_living_index": 123.5,
"quality_of_life_index": 193.7,
"crime_index": 24.1,
"safety_index": 75.9,
"synced_at": "2026-07-13T00:00:00Z",
"schema_version": 1
}
],
"page": 1,
"page_size": 20,
"total": 550,
"sort": "name_asc"
}
}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 the composite Numbeo cities dataset, merged from the current global rankings of all seven index families (cost of living, quality of life, crime, health care, pollution, traffic, property investment). A city appears once it is ranked by at least one family; coverage varies per city. Sort enum: `name_asc`, `cost_of_living_asc`, `cost_of_living_desc`, `quality_of_life_desc`, `safety_desc`, `crime_asc`, `health_care_desc`, `pollution_asc`, `traffic_asc`. 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",
"items": [
{
"city_slug": "Zurich",
"city": "Zurich, Switzerland",
"country": "Switzerland",
"coverage": [
"cost-of-living",
"quality-of-life",
"crime"
],
"cost_of_living_index": 123.5,
"quality_of_life_index": 193.7,
"crime_index": 24.1,
"safety_index": 75.9,
"synced_at": "2026-07-13T00:00:00Z",
"schema_version": 1
}
],
"page": 1,
"page_size": 20,
"total": 550,
"sort": "name_asc"
}
}curl "https://api.crawlora.net/api/v1/datasets/numbeo-cities/search" \
-H "x-api-key: $CRAWLORA_API_KEY"