Endpoint Playground
Test Crawlora's Numbeo Indices Country 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/country?country=Vietnam&index=quality-of-life" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country | string | Yes | Vietnam | Country name as Numbeo spells it |
| index | string | Yes | quality-of-life | Index family |
{
"code": 200,
"msg": "OK",
"data": {
"index": "crime",
"country": "Vietnam",
"headline_indices": [
{
"name": "Crime Index",
"value": 40.5
}
],
"cities": [
{
"rank": 1,
"city": "Ho Chi Minh City",
"city_slug": "Ho-Chi-Minh-City",
"indices": [
{
"name": "Crime Index",
"value": 45.2
},
{
"name": "Safety Index",
"value": 54.8
}
]
}
],
"contributors_note": "Contributors: 90",
"last_update": "1 July 2026",
"source_url": "https://www.numbeo.com/crime/country_result.jsp?country=Vietnam"
}
}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 country's aggregate data for a Numbeo index family, plus every city Numbeo tracks there with its index breakdown. Credential-free public Numbeo data (numbeo.com).
{
"code": 200,
"msg": "OK",
"data": {
"index": "crime",
"country": "Vietnam",
"headline_indices": [
{
"name": "Crime Index",
"value": 40.5
}
],
"cities": [
{
"rank": 1,
"city": "Ho Chi Minh City",
"city_slug": "Ho-Chi-Minh-City",
"indices": [
{
"name": "Crime Index",
"value": 45.2
},
{
"name": "Safety Index",
"value": 54.8
}
]
}
],
"contributors_note": "Contributors: 90",
"last_update": "1 July 2026",
"source_url": "https://www.numbeo.com/crime/country_result.jsp?country=Vietnam"
}
}curl "https://api.crawlora.net/api/v1/numbeo/indices/country?country=<country>&index=<index>" \
-H "x-api-key: $CRAWLORA_API_KEY"