search_flights
skyscanner.comSearches https://skyscanner.com for one-way or round-trip flights and returns complete itineraries, segments, carriers, agent prices, and booking URLs.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_flights?
Searches https://skyscanner.com for one-way or round-trip flights and returns complete itineraries, segments, carriers, agent prices, and booking URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass origin, destination, departure_date, return_date, adults, child_ages, cabin_class, market, locale, currency, limit and get the result back without maintaining a scraper.
Response
{
"adults": 0,
"agents": [
{}
],
"locale": "<string>",
"market": "<string>",
"origin": {},
"status": "<string>",
"currency": "<string>",
"child_ages": [
0
],
"search_url": "<string>",
"cabin_class": "<string>",
"destination": {},
"itineraries": [
{}
],
"return_date": "<string>",
"filter_stats": {},
"total_results": 0,
"departure_date": "<string>",
"returned_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/06dd3ab9-4ae3-46ad-bd67-cbec1a814300/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "06dd3ab9-4ae3-46ad-bd67-cbec1a814300",
"variables": {
"origin": "San Francisco",
"destination": "Paris",
"departure_date": "2026-09-10",
"return_date": "",
"adults": 1,
"child_ages": [],
"cabin_class": "economy",
"market": "US",
"locale": "en-US",
"currency": "USD",
"limit": 10
}
}'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="06dd3ab9-4ae3-46ad-bd67-cbec1a814300") — the "search_flights" function, which searches https://skyscanner.com for one-way or round-trip flights and returns complete itineraries, segments, carriers, agent prices, and booking URLs.. It takes origin (str), destination (str), departure_date (str), return_date (str), adults (int), child_ages (list[int]), cabin_class (str), market (str), locale (str), currency (str), limit (int). Return the result as structured JSON.