Endpoint Playground
Test Crawlora's Numbeo Cost Of Living City 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/city/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": "Los Angeles, CA",
"city_slug": "Los-Angeles",
"country": "United States",
"categories": [
{
"category": "Restaurants",
"items": [
{
"name": "Meal at an Inexpensive Restaurant",
"currency_symbol": "$",
"price": 25,
"range_low": 16,
"range_high": 45
}
]
},
{
"category": "Rent Per Month",
"items": [
{
"name": "1 Bedroom Apartment in City Centre",
"currency_symbol": "$",
"price": 2563.18,
"range_low": 2000,
"range_high": 3400
}
]
}
],
"contributors_12mo": 178,
"last_update": "13 July 2026",
"source_url": "https://www.numbeo.com/cost-of-living/in/Los-Angeles"
}
}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 itemized cost-of-living prices for one city (restaurants, markets, transportation, utilities, rent, and more), grouped by category. Credential-free public Numbeo data (numbeo.com).
{
"code": 200,
"msg": "OK",
"data": {
"city": "Los Angeles, CA",
"city_slug": "Los-Angeles",
"country": "United States",
"categories": [
{
"category": "Restaurants",
"items": [
{
"name": "Meal at an Inexpensive Restaurant",
"currency_symbol": "$",
"price": 25,
"range_low": 16,
"range_high": 45
}
]
},
{
"category": "Rent Per Month",
"items": [
{
"name": "1 Bedroom Apartment in City Centre",
"currency_symbol": "$",
"price": 2563.18,
"range_low": 2000,
"range_high": 3400
}
]
}
],
"contributors_12mo": 178,
"last_update": "13 July 2026",
"source_url": "https://www.numbeo.com/cost-of-living/in/Los-Angeles"
}
}curl "https://api.crawlora.net/api/v1/numbeo/cost-of-living/city/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"