Find the Best Flight Prices
Search across airlines and routes to find the cheapest flights for your travel dates and destination.
Live flights with prices & baggage
Search live flight inventory across airlines for any route. Get real-time pricing, baggage, emissions, stops, and booking deadlines for one-way or round-trip flights. Supports economy through first class, up to 9 passengers. Returns IDs needed for booking handoff.
Search for flight offers between two airports. Returns prices, airlines, departure and arrival times, duration, number of stops, baggage, emissions, and booking deadlines for each offer.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "flight-search",
"skill": "search_flights",
"input": {
"origin": "LHR",
"destination": "JFK",
"departure_date": "2026-04-15"
}
}' \
https://api.toolrouter.com/v1/tools/callSearch for airport or city IATA codes by name. Useful when you know the city or airport name but need the IATA code for flight searches.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "flight-search",
"skill": "find_airport",
"input": {
"query": "London"
}
}' \
https://api.toolrouter.com/v1/tools/callGet refreshed details for a specific flight offer by its ID. Returns updated pricing, baggage info, available services, and booking deadline. Use this after search_flights to check if an offer is still available.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "flight-search",
"skill": "get_offer",
"input": {
"offer_id": "off_0000AEdHh0OlkSORal"
}
}' \
https://api.toolrouter.com/v1/tools/callclaude 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-search","skill":"search_flights","input":{}}' \
https://api.toolrouter.com/v1/tools/callSearch across airlines and routes to find the cheapest flights for your travel dates and destination.
Analyze different routing options between cities including direct flights, connections, and alternative airports.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Plan a complete trip from flights and hotels to weather, currency, and local events in one workflow.
Plan business trips with flights, hotels, currency conversion, weather, and timezone alignment.
Not necessarily. Use `find_airport` if you only have a city or airport name, then pass the IATA codes into `search_flights`.
`search_flights` returns live offers with airlines, departure and arrival times, duration, stops, baggage, emissions, and booking deadlines.
Yes. Set `max_connections` to `0` for direct-only results, and choose the cabin class you want, from economy through first class.
Use `get_offer` on a specific offer ID to refresh the price and confirm availability. The search response also includes the IDs needed for booking handoff.