Flights
Search flights
Search hundreds of airlines for flights. Free and unlimited. Results include price, airlines, duration, stopovers, and booking conditions. City codes (LON, NYC, PAR) automatically expand to all airports in that city.
post/api/v1/flights/search
Request body
Example request
{
"origin": "LHR",
"destination": "JFK",
"date_from": "2026-04-15",
"currency": "EUR"
}Response
Search results
Example response
{
"offers": [
{
"id": "off_abc123",
"price": 189.5,
"currency": "EUR",
"airlines": [
"Ryanair"
]
}
]
}