Endpoint Playground
Test Crawlora's Numbeo Cost Of Living 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/cost-of-living/country?country=Vietnam" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country | string | Yes | Vietnam | Country name as Numbeo spells it |
{
"code": 200,
"msg": "OK",
"data": {
"country": "Vietnam",
"categories": [
{
"category": "Restaurants",
"items": [
{
"name": "Meal at an Inexpensive Restaurant",
"currency_symbol": "₫",
"price": 50000,
"range_low": 30000,
"range_high": 100000
}
]
}
],
"cities": [
{
"rank": 1,
"city": "Ho Chi Minh City",
"city_slug": "Ho-Chi-Minh-City",
"cost_of_living_index": 29.3,
"rent_index": 13,
"cost_of_living_plus_rent_index": 21.9,
"groceries_index": 35.6,
"restaurant_price_index": 16.6,
"local_purchasing_power_index": 41.7
}
],
"contributors_12mo": 319,
"last_update": "10 July 2026",
"source_url": "https://www.numbeo.com/cost-of-living/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 aggregate itemized cost-of-living prices for a country, plus the headline cost-of-living indices for every city Numbeo tracks there. Credential-free public Numbeo data (numbeo.com).
{
"code": 200,
"msg": "OK",
"data": {
"country": "Vietnam",
"categories": [
{
"category": "Restaurants",
"items": [
{
"name": "Meal at an Inexpensive Restaurant",
"currency_symbol": "₫",
"price": 50000,
"range_low": 30000,
"range_high": 100000
}
]
}
],
"cities": [
{
"rank": 1,
"city": "Ho Chi Minh City",
"city_slug": "Ho-Chi-Minh-City",
"cost_of_living_index": 29.3,
"rent_index": 13,
"cost_of_living_plus_rent_index": 21.9,
"groceries_index": 35.6,
"restaurant_price_index": 16.6,
"local_purchasing_power_index": 41.7
}
],
"contributors_12mo": 319,
"last_update": "10 July 2026",
"source_url": "https://www.numbeo.com/cost-of-living/country_result.jsp?country=Vietnam"
}
}curl "https://api.crawlora.net/api/v1/numbeo/cost-of-living/country?country=<country>" \
-H "x-api-key: $CRAWLORA_API_KEY"