Live
get_daily_flight_prices
skyscanner.comReturns daily cheapest one-way flight prices for roughly the next 12 months from https://skyscanner.com using origin and destination sky IDs or IATA codes.
Parameters5
Runs3
Updated6h 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_daily_flight_prices?
Returns daily cheapest one-way flight prices for roughly the next 12 months from https://skyscanner.com using origin and destination sky IDs or IATA codes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass origin_sky_id, destination_sky_id, market, locale, currency and get the result back without maintaining a scraper.
Response
{
"count": 0,
"locale": "<string>",
"market": "<string>",
"prices": [
{
"day": "<string>",
"group": "<string>",
"price": 0
}
],
"currency": "<string>",
"end_date": "<string>",
"start_date": "<string>",
"origin_sky_id": "<string>",
"destination_sky_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/b77eca45-57d5-489a-be68-f78232fa2ad1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b77eca45-57d5-489a-be68-f78232fa2ad1",
"variables": {
"origin_sky_id": "NYCA",
"destination_sky_id": "LOND",
"market": "US",
"locale": "en-US",
"currency": "USD"
}
}'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="b77eca45-57d5-489a-be68-f78232fa2ad1") — the "get_daily_flight_prices" function, which returns daily cheapest one-way flight prices for roughly the next 12 months from https://skyscanner.com using origin and destination sky IDs or IATA codes.. It takes origin_sky_id (str), destination_sky_id (str), market (str), locale (str), currency (str). Return the result as structured JSON.