Marketplace
No threads yet
Live

list_country_cost_rankings

expatistan.com

Returns all countries ranked from most to least expensive by price index, with rank, name, slug, country code and index value, from https://expatistan.com.

Parameters0
Runs4
Updated1h ago
Operational4 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_country_cost_rankings?

Returns all countries ranked from most to least expensive by price index, with rank, name, slug, country code and index value, from https://expatistan.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.

Response

{
  "countries": [
    {
      "name": "<string>",
      "rank": 0,
      "slug": "<string>",
      "price_index": 0,
      "country_code": "<string>"
    }
  ],
  "source_url": "<string>",
  "baseline_city": "<string>",
  "baseline_index": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a716ec1f-f503-4464-a14a-8101b43a2690/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a716ec1f-f503-4464-a14a-8101b43a2690",
    "variables": {}
}'

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="a716ec1f-f503-4464-a14a-8101b43a2690") — the "list_country_cost_rankings" function, which returns all countries ranked from most to least expensive by price index, with rank, name, slug, country code and index value, from https://expatistan.com..

It takes no parameters. Return the result as structured JSON.