Live
get_country_cost_details
expatistan.comReturns country-wide monthly cost estimates, relative rankings, and complete category-level item prices from https://expatistan.com.
Parameters1
Runs3
Updated1h ago
Operational3 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_country_cost_details?
Returns country-wide monthly cost estimates, relative rankings, and complete category-level item prices 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 country_slug and get the result back without maintaining a scraper.
Response
{
"country": "<string>",
"currency": "<string>",
"categories": [
{
"name": "<string>",
"items": [
{
"description": "<string>",
"local_currency_price": "<string>"
}
]
}
],
"price_year": 0,
"source_url": "<string>",
"country_slug": "<string>",
"currency_code": "<string>",
"relative_rankings": [
{
"scope": "<string>",
"position": 0,
"statement": "<string>",
"description": "<string>",
"total_countries": 0
}
],
"single_person_monthly_cost": "<string>",
"family_of_four_monthly_cost": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/6a68b9f9-d0ef-4569-99b8-c2a038ff310e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6a68b9f9-d0ef-4569-99b8-c2a038ff310e",
"variables": {
"country_slug": "switzerland"
}
}'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="6a68b9f9-d0ef-4569-99b8-c2a038ff310e") — the "get_country_cost_details" function, which returns country-wide monthly cost estimates, relative rankings, and complete category-level item prices from https://expatistan.com.. It takes country_slug (str). Return the result as structured JSON.