get_route_flight_schedule
flightsfrom.comGet the detailed non-stop flight schedule for a specific origin-destination route and date on https://www.flightsfrom.com. Returns all listed flights with departure times, airline names, flight numbers, and aircraft types for that day.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_route_flight_schedule?
Get the detailed non-stop flight schedule for a specific origin-destination route and date on https://www.flightsfrom.com. Returns all listed flights with departure times, airline names, flight numbers, and aircraft types for that day. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass origin_iata, destination_iata, date, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"date": "<string>",
"source": "<string>",
"flights": [
{
"airline": "<string>",
"aircraft_type": "<string>",
"flight_number": "<string>",
"departure_time": "<string>",
"airline_logo_url": "<string>"
}
],
"route_url": "<string>",
"date_label": "<string>",
"origin_iata": "<string>",
"flight_count": 0,
"destination_iata": "<string>",
"flight_duration_range": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/c8ab5831-df69-4c74-b8b0-c4745a3798f6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c8ab5831-df69-4c74-b8b0-c4745a3798f6",
"variables": {
"origin_iata": "LAX",
"destination_iata": "SFO",
"date": "auto",
"timeout_seconds": 45
}
}'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="c8ab5831-df69-4c74-b8b0-c4745a3798f6") — the "get_route_flight_schedule" function, which get the detailed non-stop flight schedule for a specific origin-destination route and date on https://www.flightsfrom.com. Returns all listed flights with departure times, airline names, flight numbers, and aircraft types for that day.. It takes origin_iata (str), destination_iata (str), date (str), timeout_seconds (int). Return the result as structured JSON.