get_market_overview
airdna.coGets trailing-twelve-month short-term rental performance for a city from https://www.airdna.co. Returns ADR, occupancy, annual revenue, RevPAR, active listings, YoY changes, coverage dates, and the AirDNA Market Score with all available subscores.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_market_overview?
Gets trailing-twelve-month short-term rental performance for a city from https://www.airdna.co. Returns ADR, occupancy, annual revenue, RevPAR, active listings, YoY changes, coverage dates, and the AirDNA Market Score with all available subscores. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city, state, country and get the result back without maintaining a scraper.
Response
{
"revpar": 0,
"summary": "<string>",
"city_slug": "<string>",
"market_id": "<string>",
"source_url": "<string>",
"state_name": "<string>",
"state_slug": "<string>",
"market_name": "<string>",
"country_name": "<string>",
"country_slug": "<string>",
"market_score": 0,
"updated_date": "<string>",
"annual_revenue": 0,
"currency_symbol": "<string>",
"revpar_formatted": "<string>",
"coverage_end_date": "<string>",
"average_daily_rate": 0,
"revpar_yoy_percent": 0,
"coverage_start_date": "<string>",
"active_listings_count": 0,
"market_score_subscores": {},
"occupancy_rate_percent": 0,
"annual_revenue_formatted": "<string>",
"occupancy_rate_formatted": "<string>",
"active_listings_formatted": "<string>",
"annual_revenue_yoy_percent": 0,
"occupancy_rate_yoy_percent": 0,
"active_listings_yoy_percent": 0,
"average_daily_rate_formatted": "<string>",
"average_daily_rate_yoy_percent": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/edee64d2-f609-4ea0-b6c2-dae92af3fe76/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "edee64d2-f609-4ea0-b6c2-dae92af3fe76",
"variables": {
"city": "austin",
"state": "texas",
"country": "us"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="edee64d2-f609-4ea0-b6c2-dae92af3fe76") — the "get_market_overview" function, which gets trailing-twelve-month short-term rental performance for a city from https://www.airdna.co. Returns ADR, occupancy, annual revenue, RevPAR, active listings, YoY changes, coverage dates, and the AirDNA Market Score with all available subscores.. It takes city (str), state (str), country (str). Return the result as structured JSON.