Endpoint Playground
Test Crawlora's Numbeo Indices 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/indices/city/Los-Angeles?index=quality-of-life" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Los-Angeles | Numbeo city slug |
| index | string | Yes | quality-of-life | Index family |
{
"code": 200,
"msg": "OK",
"data": {
"index": "crime",
"city": "Los Angeles, CA",
"city_slug": "Los-Angeles",
"country": "United States",
"headline_indices": [
{
"name": "Crime Index",
"value": 53.83
},
{
"name": "Safety Index",
"value": 46.17
}
],
"sections": [
{
"title": "Crime rates in Los Angeles, CA, United States",
"rows": [
{
"name": "Level of crime",
"value": 61.08,
"qualifier": "High"
}
]
},
{
"title": "Safety in Los Angeles, CA, United States",
"rows": [
{
"name": "Safety walking alone during daylight",
"value": 65.9,
"qualifier": "High"
}
]
}
],
"contributors_note": "Contributors: 486",
"last_update": "13 June 2026",
"source_url": "https://www.numbeo.com/crime/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 one city's data for a Numbeo index family (quality of life, crime, health care, pollution, traffic, or property investment): headline indices, and (depending on the family) titled sub-index sections and/or itemized prices. Credential-free public Numbeo data (numbeo.com).
{
"code": 200,
"msg": "OK",
"data": {
"index": "crime",
"city": "Los Angeles, CA",
"city_slug": "Los-Angeles",
"country": "United States",
"headline_indices": [
{
"name": "Crime Index",
"value": 53.83
},
{
"name": "Safety Index",
"value": 46.17
}
],
"sections": [
{
"title": "Crime rates in Los Angeles, CA, United States",
"rows": [
{
"name": "Level of crime",
"value": 61.08,
"qualifier": "High"
}
]
},
{
"title": "Safety in Los Angeles, CA, United States",
"rows": [
{
"name": "Safety walking alone during daylight",
"value": 65.9,
"qualifier": "High"
}
]
}
],
"contributors_note": "Contributors: 486",
"last_update": "13 June 2026",
"source_url": "https://www.numbeo.com/crime/in/Los-Angeles"
}
}curl "https://api.crawlora.net/api/v1/numbeo/indices/city/<slug>?index=<index>" \
-H "x-api-key: $CRAWLORA_API_KEY"