skyscanner.de APIskyscanner.de ↗
Search one-way flights, compare airline prices, and get daily or monthly cheapest-fare calendars from Skyscanner.de via 4 structured API endpoints.
curl -X GET 'https://api.parse.bot/scraper/33eee404-d3ea-4f24-8793-1dcfd3580c5c/search_flights_autocomplete?query=New+York' \ -H 'X-API-Key: $PARSE_API_KEY'
Autocomplete/suggest airport, city, or country names from a partial text query. Returns matching places with IATA codes, city names, country information, and Geo IDs. Results are localized to German (de-DE).
| Param | Type | Description |
|---|---|---|
| queryrequired | string | Partial name of a location to search for (e.g. 'Ber', 'Lond', 'Par') |
{
"type": "object",
"fields": {
"data": "array of matching place objects with PlaceId, PlaceName, CountryId, CountryName, CityId, CityName, GeoId, IataCode, and Location",
"status": "string indicating success"
},
"sample": {
"data": [
{
"GeoId": "95673383",
"CityId": "BERL",
"PlaceId": "BER",
"CityName": "Berlin",
"IataCode": "",
"Location": "52.366667,13.50333",
"CountryId": "DE",
"PlaceName": "Berlin Brandenburg",
"CountryName": "Deutschland"
}
],
"status": "success"
}
}About the skyscanner.de API
The Skyscanner.de API exposes 4 endpoints for querying flight data from Skyscanner's German market: autocomplete airport and city lookups, one-way flight search with per-itinerary pricing, and two price-calendar views. The search_flights endpoint returns available itineraries with airline, price, times, and duration for any origin–destination pair and departure date, while get_price_calendar and get_price_calendar_month surface the cheapest fares across individual days and across multiple months.
Endpoints and What They Return
The search_flights_autocomplete endpoint accepts a partial location string (e.g. 'Ber' or 'Lond') and returns matching airports, cities, and countries. Each result includes PlaceId, PlaceName, IataCode, GeoId, CityId, CityName, CountryId, and CountryName. Results are localized to de-DE, so display names and country strings appear in German. Use this endpoint to resolve user input into the IATA codes required by the flight search and calendar endpoints.
Flight Search
search_flights takes a required origin IATA code, destination IATA code, and a date string in YYYY-MM-DD format. It returns a sessionId and an itineraries object containing available one-way flight options — each with carrier, pricing, departure and arrival times, and total duration. Only one-way routes are supported by this endpoint; round-trip search is not exposed.
Price Calendars
Two calendar endpoints offer different granularities. get_price_calendar returns a flights object showing the cheapest available fare for each day of a given month for an origin–destination pair — useful for displaying a "cheapest day to fly" calendar view. get_price_calendar_month returns a flightPricesPerMonth array, giving cheapest-price summaries grouped by month across multiple months for the same route. Both accept origin and destination as required inputs and require no date parameter, defaulting to near-future availability.
- Display a date-picker with per-day cheapest prices using
get_price_calendarfor a user-specified route - Power a month-overview fare grid with
get_price_calendar_monthto help users pick the cheapest travel month - Build an airport search-as-you-type input using
search_flights_autocompletewith IATA code resolution - Retrieve and compare airline itineraries, prices, and flight durations for a specific route and date via
search_flights - Aggregate daily minimum fares across routes to identify the cheapest corridor for flexible travelers
- Enrich travel booking tools with German-localized airport and city names for EU-facing products
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Skyscanner have an official developer API?+
What does `search_flights` return, and can it search round-trip routes?+
sessionId and an itineraries object containing one-way flight options with airline, price, departure and arrival times, and duration. Round-trip search is not covered by this endpoint. The API currently handles one-way queries only. You can fork it on Parse and revise to add a round-trip search endpoint if your use case requires it.Do the price calendar endpoints require a specific month or date?+
get_price_calendar and get_price_calendar_month require only origin and destination — no date or month parameter. Both default to near-future availability. If you need to query a specific target month, that filtering is not currently exposed. You can fork the API on Parse and revise it to add a month parameter to the calendar endpoints.Are multi-city or connecting-flight details exposed?+
search_flights endpoint returns itinerary-level data for one-way routes, but does not break out individual flight segments, layover durations, or connection airports within a multi-leg itinerary. You can fork the API on Parse and revise it to add a segment-detail endpoint once the underlying data is available.What localization does the autocomplete endpoint use?+
search_flights_autocomplete are localized to de-DE, meaning place names, city names, and country names are returned in German. This is fixed to the German market and is not configurable per-request in the current endpoint definition.