Kiwi Flights Scraper avatar

Kiwi Flights Scraper

Pricing

from $1.50 / 1,000 results

Go to Apify Store
Kiwi Flights Scraper

Kiwi Flights Scraper

[πŸ’° $1.5 / 1K] Search Kiwi.com for flights and travel itineraries. Get full outbound and return legs with every segment β€” airports, airlines, departure and arrival times, layovers, and total duration. Filter by stops, cabin class, baggage, and currency, with prices in your currency plus EUR.

Pricing

from $1.50 / 1,000 results

Rating

0.0

(0)

Developer

SolidCode

SolidCode

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Search Kiwi.com for flight itineraries and pull every option as clean, structured data β€” full outbound and return legs, every connecting segment with its airport, airline, and times, layover nights, total trip duration, and prices in both your chosen currency and EUR. Built for travel agencies, fare-comparison sites, deal-alert builders, and travel data analysts who need ready-to-use itinerary data without parsing a booking site by hand.

Why This Scraper?

  • Dual pricing on every itinerary β€” each row carries the fare in your selected currency and in EUR (priceEur), so you can compare routes across markets without running a separate conversion.
  • 46 display currencies β€” bill in US Dollar, Euro, British Pound, Japanese Yen, UAE Dirham, Indian Rupee, Brazilian Real, and 39 more, while the EUR figure stays constant for cross-market analysis.
  • Four cabin classes including First β€” Economy, Premium Economy, Business, and First, not just the usual Economy/Business pair.
  • Full per-segment breakdown β€” every connecting flight is listed with its origin and destination airport (code, name, city), departure and arrival times in both local and UTC, operating airline, and flight number.
  • One-way and round-trip in one actor β€” leave the return date empty for one-way; set it and you get separate outbound and inbound legs with independent stop counts (outboundStops, inboundStops) and layover nights.
  • Direct, ≀1-stop, or ≀2-stop filters β€” restrict itineraries to nonstop only, or cap connections at one or two, so you only collect the routings you can sell.
  • Cabin and checked baggage built into the fare β€” request 0–1 cabin bags and 0–2 checked bags per passenger so the price you see already includes the luggage your travelers need.
  • City-or-IATA place input β€” type "Prague" or "PRG", "New York" or "JFK"; the actor resolves names and metro codes to the right airports for you.
  • A ready-to-open booking link on every row β€” bookingUrl is an absolute Kiwi.com link, so any itinerary can be opened or handed to a customer in one click.

Use Cases

Fare Comparison & Price Monitoring

  • Track the cheapest fare on a route day by day to spot price drops
  • Compare the same trip across cabin classes to size up upgrade value
  • Benchmark fares in local currency while normalizing on EUR
  • Monitor how direct fares compare to one- and two-stop alternatives

Travel Agency Tooling

  • Pull bookable itineraries with luggage already priced in for client quotes
  • Surface the best-ranked options for a requested route and date in seconds
  • Build internal quoting tools backed by per-segment airline and timing data
  • Offer one-way and round-trip options side by side from a single search

Deal & Alert Products

  • Power fare-drop alerts that fire when a route dips below a threshold
  • Feed newsletters and Telegram/Slack bots with fresh, structured deals
  • Flag rare nonstop options on routes that usually require a connection
  • Detect cheap multi-stop routings worth promoting to budget travelers

Travel Market Research

  • Map which airlines serve a route and how their fares and durations differ
  • Study layover patterns and overnight connections across markets
  • Analyze pricing spreads between cabin classes for revenue research
  • Compare connection time vs. total trip duration across competing routings

Corporate Travel & OTA Aggregation

  • Collect compliant itineraries within a stops and cabin-class policy
  • Aggregate Kiwi options into a multi-source meta-search front end
  • Standardize fares into a single EUR baseline for cross-region reporting
  • Pre-package fares with cabin and checked baggage for travel desks

Getting Started

Just a route and a departure date β€” leave the return date empty for one-way:

{
"origin": "Prague",
"destination": "New York",
"departureDate": "2026-07-15"
}

Round-Trip with Cabin & Stops

Add a return date, pick a cabin class, and limit connections:

{
"origin": "LON",
"destination": "JFK",
"departureDate": "2026-08-10",
"returnDate": "2026-08-20",
"cabinClass": "BUSINESS",
"maxStops": "1"
}

Set baggage, currency, and a result cap:

{
"origin": "Berlin",
"destination": "Tokyo",
"departureDate": "2026-09-05",
"returnDate": "2026-09-19",
"cabinClass": "PREMIUM_ECONOMY",
"maxStops": "2",
"cabinBags": "1",
"checkedBags": "1",
"currency": "USD",
"maxResults": 50
}

Input Reference

Route & Dates

ParameterTypeDefaultDescription
originstring"Prague"Where you're flying from β€” a city or airport name (e.g. "Prague") or an IATA code (e.g. "PRG").
destinationstring"New York"Where you're flying to β€” a city or airport name (e.g. "New York") or an IATA code (e.g. "JFK").
departureDatestring""The day you want to depart, in YYYY-MM-DD format. A departure date is required to search for flights.
returnDatestring""The day you want to fly back, in YYYY-MM-DD format. Leave empty for a one-way trip.

Cabin & Filters

ParameterTypeDefaultDescription
cabinClassselectEconomyTravel class: Economy, Premium Economy, Business, or First.
maxStopsselectAny number of stopsLimit connections: Any number of stops, Direct flights only, Up to 1 stop, or Up to 2 stops.
cabinBagsselect0 cabin bagsCabin (carry-on) bags per passenger included in the fare: 0 or 1.
checkedBagsselect0 checked bagsChecked bags per passenger included in the fare: 0, 1, or 2.

Localization & Limits

ParameterTypeDefaultDescription
currencyselectEuroCurrency for displayed prices (46 options). Prices are always also returned in EUR for comparison.
maxResultsinteger100How many itineraries to return. Kiwi delivers results in pages of about 50, so a single search returns roughly 50 itineraries. Set to 0 for as many as Kiwi returns.

Output

Each result is one flat itinerary row. Round-trip itineraries include both outbound and inbound legs; one-way itineraries include only the outbound leg.

{
"originCode": "PRG",
"originCity": "Prague",
"destinationCode": "JFK",
"destinationCity": "New York",
"departureTime": "2026-07-15T10:25:00",
"arrivalTime": "2026-07-15T18:40:00",
"returnTime": "2026-07-22T20:15:00",
"airlines": ["British Airways", "American Airlines"],
"outboundStops": 1,
"inboundStops": 1,
"durationHours": 11.25,
"layoverNights": 0,
"price": 612.0,
"currency": "USD",
"priceEur": 564.0,
"cabinClass": "ECONOMY",
"segments": [
{
"leg": "outbound",
"fromCode": "PRG",
"fromCity": "Prague",
"fromName": "VΓ‘clav Havel Airport Prague",
"toCode": "LHR",
"toCity": "London",
"toName": "London Heathrow",
"departureTime": "2026-07-15T10:25:00",
"departureTimeUtc": "2026-07-15T08:25:00Z",
"arrivalTime": "2026-07-15T11:40:00",
"arrivalTimeUtc": "2026-07-15T10:40:00Z",
"airline": "British Airways",
"airlineCode": "BA",
"operatingAirline": "British Airways",
"flightNumber": "BA851",
"cabinClass": "ECONOMY",
"durationHours": 2.25
}
],
"bookingUrl": "https://www.kiwi.com/en/booking?token=..."
}

Itinerary & Route

FieldTypeDescription
originCodestringDeparture airport IATA code
originCitystringDeparture city name
destinationCodestringArrival airport IATA code
destinationCitystringArrival city name
departureTimestringOutbound departure local time
arrivalTimestringOutbound arrival local time
returnTimestringInbound departure local time (round-trip only; null for one-way)
airlinesstring[]Unique airline names across the whole itinerary
outboundStopsnumberNumber of stops on the outbound leg (0 = direct)
inboundStopsnumberNumber of stops on the inbound leg (null for one-way)
durationHoursnumberTotal itinerary duration in hours
layoverNightsnumberOvernight stays during connections
bookingUrlstringAbsolute Kiwi.com link to book this itinerary

Pricing & Cabin

FieldTypeDescription
pricenumberFare in your selected currency
currencystringCurrency code for price
priceEurnumberFare in EUR, always returned for cross-market comparison
cabinClassstringCabin class searched (ECONOMY, PREMIUM_ECONOMY, BUSINESS, FIRST)

Segments

segments is an array of per-flight detail objects, in travel order, covering both legs.

FieldTypeDescription
legstring"outbound" or "inbound"
fromCode / toCodestringOrigin / destination airport IATA code
fromCity / toCitystringOrigin / destination city name
fromName / toNamestringFull origin / destination airport name
departureTime / arrivalTimestringLocal departure / arrival time
departureTimeUtc / arrivalTimeUtcstringUTC departure / arrival time
airlinestringMarketing airline name
airlineCodestringMarketing airline code
operatingAirlinestringOperating airline name
flightNumberstringFlight number
cabinClassstringCabin class on this segment
durationHoursnumberSegment duration in hours

Tips for Best Results

  • Use IATA city codes for metro-area searches β€” codes like LON (all London airports) or NYC (all New York airports) span multiple airports in one search, widening your options versus a single-airport code.
  • Leave the return date empty for one-way β€” there's no separate toggle; an empty returnDate is what tells the actor to search one-way fares.
  • Bill locally, compare globally β€” set currency to your customer's local currency for quoting, and use the always-present priceEur field as a stable baseline when comparing routes across markets.
  • Price in the bags you actually need β€” set cabinBags and checkedBags so the fare already reflects the luggage your travelers carry, instead of quoting a fare that excludes them.
  • One search returns roughly 50 ranked itineraries β€” Kiwi front-loads the best-ranked options, so a single fixed-date search returns about 50 rows even if maxResults is higher; run separate searches across dates to widen coverage.
  • Loosen stops to find cheaper routings β€” set maxStops to "Up to 1 stop" or "Up to 2 stops" to surface connection-based fares that are often well below the nonstop price.
  • Search a date window β€” to track a route over time or find the cheapest day, run the actor once per candidate date rather than expecting one run to cover a range.
  • Fares are quoted for one adult β€” each search prices a single adult traveler; multiply or re-run per traveler profile if you need fares for a group.

Pricing

From $1.50 per 1,000 results β€” a flat, predictable per-result price for fully structured flight itineraries. Bronze, Silver, and Gold subscribers pay progressively less; the table below shows total cost at each discount tier.

ResultsNo discountBronzeSilverGold
100$0.18$0.17$0.16$0.15
1,000$1.80$1.70$1.60$1.50
10,000$18.00$17.00$16.00$15.00
100,000$180.00$170.00$160.00$150.00

A "result" is one itinerary row in the output dataset. No compute or time-based charges β€” you pay per result, plus a small fixed per-run start fee.

Integrations

Export data in JSON, CSV, Excel, XML, or RSS. Connect to 1,500+ apps via:

  • Zapier / Make / n8n β€” Workflow automation
  • Google Sheets β€” Direct spreadsheet export
  • Slack / Email β€” Notifications on new results
  • Webhooks β€” Trigger custom APIs on run completion
  • Apify API β€” Full programmatic access

This actor is designed for legitimate flight-fare research, price comparison, and travel product development. Users are responsible for complying with applicable laws and Kiwi.com's Terms of Service. Collect only publicly available pricing and itinerary data, and do not use the output for spam, misrepresentation, or any unlawful purpose.