Marketplace
No threads yet
Live

get_cost_comparison

expatistan.com

Returns an Expatistan city-to-city cost summary and detailed expense price comparisons by category from https://expatistan.com.

Parameters2
Runs8
Updated1h ago
Operational8 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 get_cost_comparison?

Returns an Expatistan city-to-city cost summary and detailed expense price comparisons by category 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 city_1, city_2 and get the result back without maintaining a scraper.

Response

{
  "categories": [
    {
      "name": "<string>",
      "items": [
        {
          "item": "<string>",
          "category": "<string>",
          "difference": "<string>",
          "city_1_price": "<string>",
          "city_2_price": "<string>"
        }
      ]
    }
  ],
  "source_url": "<string>",
  "city_1_name": "<string>",
  "city_1_slug": "<string>",
  "city_2_name": "<string>",
  "city_2_slug": "<string>",
  "summary_statement": "<string>",
  "more_expensive_city": "<string>",
  "percentage_difference": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/84b51f8e-4b8f-472a-90bb-eb5895cf983a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "84b51f8e-4b8f-472a-90bb-eb5895cf983a",
    "variables": {
        "city_1": "Prague",
        "city_2": "London"
    }
}'

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="84b51f8e-4b8f-472a-90bb-eb5895cf983a") — the "get_cost_comparison" function, which returns an Expatistan city-to-city cost summary and detailed expense price comparisons by category from https://expatistan.com..

It takes city_1 (str), city_2 (str). Return the result as structured JSON.