Marketplace
No threads yet
Live

get_city_cost_details

expatistan.com

Returns monthly estimates and complete category-level item prices for one city from https://expatistan.com, including local-currency values and item links.

Parameters1
Runs6
Updated1h ago
Degraded6 runs · 83.3% 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 get_city_cost_details?

Returns monthly estimates and complete category-level item prices for one city from https://expatistan.com, including local-currency values and item links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city_slug and get the result back without maintaining a scraper.

Response

{
  "city": "<string>",
  "country": "<string>",
  "currency": "<string>",
  "city_slug": "<string>",
  "categories": [
    {
      "name": "<string>",
      "items": [
        {
          "url": "<string>",
          "description": "<string>",
          "local_currency_price": "<string>"
        }
      ]
    }
  ],
  "source_url": "<string>",
  "currency_code": "<string>",
  "current_as_of": "<string>",
  "estimate_note": "<string>",
  "contributor_count": 0,
  "data_quality_note": "<string>",
  "latest_price_update": "<string>",
  "price_observation_count": 0,
  "single_person_monthly_cost": "<string>",
  "family_of_four_monthly_cost": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/1531fac0-610f-4487-88af-9942feaa38fb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "1531fac0-610f-4487-88af-9942feaa38fb",
    "variables": {
        "city_slug": "prague"
    }
}'

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="1531fac0-610f-4487-88af-9942feaa38fb") — the "get_city_cost_details" function, which returns monthly estimates and complete category-level item prices for one city from https://expatistan.com, including local-currency values and item links..

It takes city_slug (str). Return the result as structured JSON.