# Skyscanner Search ## Overview | Property | Value | |----------|-------| | **Status** | private | | **Method** | `GET` | | **Endpoint** | `/v2/skyscanner/search` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/skyscanner-search | ## Description Get real-time flight schedules and pricing data from Skyscanner with our API for travel analysis and price comparison. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/skyscanner/search' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Example ```json { "adults": 1, "origin": "Toulouse", "flights": [ { "price": 120, "airline": "Air France", "duration": "1h 30m", "arrival_time": "2024-05-08T07:30:00", "flight_number": "AF1234", "departure_time": "2024-05-08T06:00:00" }, { "price": 100, "airline": "easyJet", "duration": "1h 35m", "arrival_time": "2024-05-08T09:35:00", "flight_number": "U21234", "departure_time": "2024-05-08T08:00:00" } ], "children": 0, "cabin_class": "economy", "destination": "Geneva", "return_date": "2024-05-15", "departure_date": "2024-05-08", "direct_flights_only": false, "inbound_alternatives_enabled": false, "outbound_alternatives_enabled": false } ``` ## Documentation ## Overview Get real-time flight schedules and pricing data from Skyscanner with our API for travel analysis and price comparison. ## Quickstart ``` GET https://api.piloterr.com/v2/skyscanner/search?query=example ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Search query or target identifier | ## Main use cases - Integrate Skyscanner Search data into enrichment, analytics, and monitoring pipelines - Automate large-scale extraction from Skyscanner without maintaining scrapers - Power internal dashboards and workflow automations with live Skyscanner data