Marketplace
No threads yet
Live

search_places

skyscanner.com

Returns airport and city matches from https://skyscanner.com with sky IDs, geo IDs, codes, names, hierarchy, and coordinates for flight searches.

Parameters4
Runs6
Updated6h ago
Operational6 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 search_places?

Returns airport and city matches from https://skyscanner.com with sky IDs, geo IDs, codes, names, hierarchy, and coordinates for flight searches. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, market, locale, is_destination and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "query": "<string>",
  "locale": "<string>",
  "market": "<string>",
  "places": [
    {}
  ],
  "is_destination": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/03f84cb7-5bf6-477b-8519-8add06d20fbf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "03f84cb7-5bf6-477b-8519-8add06d20fbf",
    "variables": {
        "query": "Paris",
        "market": "US",
        "locale": "en-US",
        "is_destination": true
    }
}'

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="03f84cb7-5bf6-477b-8519-8add06d20fbf") — the "search_places" function, which returns airport and city matches from https://skyscanner.com with sky IDs, geo IDs, codes, names, hierarchy, and coordinates for flight searches..

It takes query (str), market (str), locale (str), is_destination (bool). Return the result as structured JSON.