Endpoint Playground
Test Crawlora's Search the Numbeo countries 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-countries/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Full-text query over the country name, max 256 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-countries",
"items": [
{
"country": "Switzerland",
"coverage": [
"cost-of-living",
"crime"
],
"cost_of_living_index": 109.8,
"crime_index": 22.1,
"safety_index": 77.9,
"synced_at": "2026-07-13T00:00:00Z",
"schema_version": 1
}
],
"page": 1,
"page_size": 20,
"total": 152,
"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 countries dataset, merged from the current global by-country rankings of all seven index families. 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-countries",
"items": [
{
"country": "Switzerland",
"coverage": [
"cost-of-living",
"crime"
],
"cost_of_living_index": 109.8,
"crime_index": 22.1,
"safety_index": 77.9,
"synced_at": "2026-07-13T00:00:00Z",
"schema_version": 1
}
],
"page": 1,
"page_size": 20,
"total": 152,
"sort": "name_asc"
}
}curl "https://api.crawlora.net/api/v1/datasets/numbeo-countries/search" \
-H "x-api-key: $CRAWLORA_API_KEY"