Flight Status
Live flight tracking in real time
Look up live flight status by flight number, or check the full departure/arrival board for any airport worldwide. See real-time delays, gate and terminal assignments, and scheduled vs actual times. Essential for tracking connections, pickups, and travel disruptions.
Look up a specific flight by its number to see if it is on time, delayed, or cancelled. Also shows the gate, terminal, and aircraft details.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "flight-status",
"skill": "check_flight",
"input": {
"flight_number": "BA115"
}
}' \
https://api.toolrouter.com/v1/tools/callSee what flights are leaving an airport in the next few hours. Use this to check the departure board before heading to the airport or to spot delays.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "flight-status",
"skill": "airport_departures",
"input": {
"airport": "LHR"
}
}' \
https://api.toolrouter.com/v1/tools/callSee what flights are arriving at an airport in the next few hours. Handy for picking someone up or checking if an inbound flight is delayed.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "flight-status",
"skill": "airport_arrivals",
"input": {
"airport": "SYD"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"flight-status","skill":"check_flight","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
Can I look up a flight by flight number?
Yes. `check_flight` looks up a specific flight number and shows whether it is on time, delayed, or cancelled, plus gate, terminal, and timing details.
Can I see an airport departure or arrival board?
Yes. `airport_departures` and `airport_arrivals` show the upcoming board for an airport code like LHR, JFK, or SYD, with a time window controlled by `hours_ahead`.
Do I need to know the IATA code first?
If you do not know it, use the flight-search `find_airport` skill first. That is the easiest way to get the airport code before checking status or boards.
What live status details are included?
You get delay minutes, gate, terminal, scheduled and actual times, and aircraft details when they are available.