Search flights, compare prices across airlines, find the cheapest travel dates, and access a full airport and airline directory — all powered by Google Flights data. One-way, round-trip, and flexible date searches with real-time pricing.
500 free credits/month · No credit card required
Structured data for real applications. Here are some ideas.
Build fare comparison tools that show real-time prices across airlines for any route. Filter by cabin class, stops, and departure time to find the best deals.
Help travelers find the cheapest dates to fly with date range searches. Show price calendars and highlight low-fare days across a full month.
Use the free airports and airlines endpoints to populate dropdowns, validate IATA codes, and build search UIs without any API key required.
Track flight prices over time for specific routes. Alert users when prices drop below their target or when booking windows open for seasonal travel.
Everything you need in one API.
/api/flights/one-way
Search one-way flights with airline, cabin class, and stop filters
/api/flights/round-trip
Search round-trip flights with combined outbound and return pricing
/api/flights/date-range
Find cheapest flight dates across a date range
/api/flights/booking-details
Get price insights, fare options, and baggage info for a flight
/api/flights/airports
Free list of major airports with IATA codes and locations
/api/flights/airlines
Free list of supported airlines with IATA codes
One API call. Structured JSON response.
curl -X GET "https://scrappa.co/api/flights/one-way?origin=JFK&destination=LAX&departure_date=2026-09-15" \
-H "Accept: application/json" \
-H "X-API-KEY: YOUR_API_KEY"
{
"flights": [
{
"price": 187,
"currency": "USD",
"total_duration_minutes": 330,
"legs": [
{
"departure_airport": "JFK",
"arrival_airport": "LAX",
"departure_time": "2026-09-15T08:00",
"arrival_time": "2026-09-15T11:30",
"duration_minutes": 330,
"airline": "AA",
"airline_name": "American Airlines",
"flight_number": "AA 1",
"stops": 0
}
]
}
],
"search_metadata": {
"origin": "JFK",
"destination": "LAX",
"departure_date": "2026-09-15",
"response_time_ms": 1240
}
}
Sign up and get 500 free credits. No credit card required.