Skyscanner Flights & Travel API
Pricing
Pay per usage
Skyscanner Flights & Travel API
Comprehensive Skyscanner scraping API with real-time flights, hotels, and car hire data. 20 endpoints.
Skyscanner Flights & Travel API
Pricing
Pay per usage
Comprehensive Skyscanner scraping API with real-time flights, hotels, and car hire data. 20 endpoints.
You can access the Skyscanner Flights & Travel API programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = { "requests": [9 {10 "endpoint": "searchFlights",11 "originSkyId": "LOND",12 "destinationSkyId": "NYCA",13 "originEntityId": "27544008",14 "destinationEntityId": "27537542",15 "date": "2026-08-01",16 "currency": "USD",17 "market": "US",18 },19 {20 "endpoint": "searchHotels",21 "entityId": "27537542",22 "checkIn": "2026-08-01",23 "checkOut": "2026-08-05",24 "adults": 2,25 "currency": "USD",26 "market": "US",27 },28 {29 "endpoint": "searchCars",30 "pickupEntityId": "95673486",31 "pickupDate": "2026-08-01",32 "dropoffDate": "2026-08-05",33 "currency": "USD",34 "market": "US",35 },36 {37 "endpoint": "getExchangeRates",38 "baseCurrency": "USD",39 },40 ] }41
42# Run the Actor and wait for it to finish43run = client.actor("elis/skyscanner-api").call(run_input=run_input)44
45# Fetch and print Actor results from the run's dataset (if there are any)46print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])47for item in client.dataset(run["defaultDatasetId"]).iterate_items():48 print(item)49
50# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use Skyscanner Flights & Travel API API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: