Endpoint Playground
Test Crawlora's Get a Numbeo city from the 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/items/Los-Angeles" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Los-Angeles | Numbeo city slug |
{
"code": 200,
"msg": "OK",
"data": {
"city_slug": "Los-Angeles",
"city": "Los Angeles, CA",
"country": "United States",
"coverage": [
"cost-of-living",
"quality-of-life",
"crime",
"health-care",
"pollution",
"traffic",
"property-investment"
],
"cost_of_living_index": 84.5,
"rent_index": 91.4,
"quality_of_life_index": 133,
"crime_index": 53.83,
"safety_index": 46.17,
"health_care_index": 61.94,
"pollution_index": 68.46,
"traffic_index": 57.1,
"property_price_to_income_ratio": 8.23,
"synced_at": "2026-07-13T00:00:00Z",
"schema_version": 1
}
}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 one composite Numbeo city record by city slug from dataset id enum value `numbeo-cities`. 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": {
"city_slug": "Los-Angeles",
"city": "Los Angeles, CA",
"country": "United States",
"coverage": [
"cost-of-living",
"quality-of-life",
"crime",
"health-care",
"pollution",
"traffic",
"property-investment"
],
"cost_of_living_index": 84.5,
"rent_index": 91.4,
"quality_of_life_index": 133,
"crime_index": 53.83,
"safety_index": 46.17,
"health_care_index": 61.94,
"pollution_index": 68.46,
"traffic_index": 57.1,
"property_price_to_income_ratio": 8.23,
"synced_at": "2026-07-13T00:00:00Z",
"schema_version": 1
}
}curl "https://api.crawlora.net/api/v1/datasets/numbeo-cities/items/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"