Endpoint Playground
Test Crawlora's Numbeo Country Cost 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-by-country" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"countries": [
{
"rank": 1,
"country": "Bermuda",
"cost_of_living_index": 135.8,
"rent_index": 105.9,
"cost_of_living_plus_rent_index": 122.1,
"groceries_index": 149,
"restaurant_price_index": 136.8,
"local_purchasing_power_index": 104.3
}
],
"source_url": "https://www.numbeo.com/cost-of-living/rankings_by_country.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 country-level cost-of-living ranking (Cost of Living, Rent, Cost of Living Plus Rent, Groceries, Restaurant Price, and Local Purchasing Power indices). Credential-free public Numbeo data (numbeo.com).
{
"code": 200,
"msg": "OK",
"data": {
"countries": [
{
"rank": 1,
"country": "Bermuda",
"cost_of_living_index": 135.8,
"rent_index": 105.9,
"cost_of_living_plus_rent_index": 122.1,
"groceries_index": 149,
"restaurant_price_index": 136.8,
"local_purchasing_power_index": 104.3
}
],
"source_url": "https://www.numbeo.com/cost-of-living/rankings_by_country.jsp"
}
}curl "https://api.crawlora.net/api/v1/numbeo/cost-of-living/rankings-by-country" \
-H "x-api-key: $CRAWLORA_API_KEY"