Live
get_city_cost_index_rankings
expatistan.comReturns ranked Expatistan city cost-of-living price indexes, optionally filtered by region, from https://expatistan.com.
Parameters1
Runs4
Updated1h ago
Operational4 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_city_cost_index_rankings?
Returns ranked Expatistan city cost-of-living price indexes, optionally filtered by region, from https://expatistan.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region and get the result back without maintaining a scraper.
Response
{
"cities": [
{
"name": "<string>",
"rank": 0,
"slug": "<string>",
"price_index": 0
}
],
"region": "<string>",
"source_url": "<string>",
"baseline_city": "<string>",
"baseline_index": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/736286cd-a8b5-457d-b150-b9655076a974/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "736286cd-a8b5-457d-b150-b9655076a974",
"variables": {
"region": "world"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="736286cd-a8b5-457d-b150-b9655076a974") — the "get_city_cost_index_rankings" function, which returns ranked Expatistan city cost-of-living price indexes, optionally filtered by region, from https://expatistan.com.. It takes region (str). Return the result as structured JSON.