Endpoint Playground
Test Crawlora's Numbeo Cost Of Living Rankings API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/numbeo/cost-of-living/rankings?scope=current&period=2026-mid" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| scope | string | No | current | current (default) or historical |
| period | string | No | 2026-mid | Required when scope=historical, e.g. 2026-mid or 2025 |
{
"code": 200,
"msg": "OK",
"data": {
"scope": "current",
"cities": [
{
"rank": 1,
"city": "Zurich, Switzerland",
"city_slug": "Zurich",
"cost_of_living_index": 123.5,
"rent_index": 74.3,
"cost_of_living_plus_rent_index": 101,
"groceries_index": 126.8,
"restaurant_price_index": 120.4,
"local_purchasing_power_index": 157.8
}
],
"source_url": "https://www.numbeo.com/cost-of-living/rankings_current.jsp"
}
}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 the global cost-of-living city ranking (Cost of Living, Rent, Cost of Living Plus Rent, Groceries, Restaurant Price, and Local Purchasing Power indices), either the continuously-updated current index or a historical periodic snapshot. Credential-free public Numbeo data (numbeo.com).
{
"code": 200,
"msg": "OK",
"data": {
"scope": "current",
"cities": [
{
"rank": 1,
"city": "Zurich, Switzerland",
"city_slug": "Zurich",
"cost_of_living_index": 123.5,
"rent_index": 74.3,
"cost_of_living_plus_rent_index": 101,
"groceries_index": 126.8,
"restaurant_price_index": 120.4,
"local_purchasing_power_index": 157.8
}
],
"source_url": "https://www.numbeo.com/cost-of-living/rankings_current.jsp"
}
}curl "https://api.crawlora.net/api/v1/numbeo/cost-of-living/rankings" \
-H "x-api-key: $CRAWLORA_API_KEY"