skyairline.com APIskyairline.com ↗
Search SKY Airline flights, list airports and routes, retrieve fare brand definitions, and fetch promotions via a single structured API.
curl -X GET 'https://api.parse.bot/scraper/b6a412ed-9790-4c2a-afb0-56bc29e363fc/list_airports?homemarket=US' \ -H 'X-API-Key: $PARSE_API_KEY'
List all airports served by SKY Airline with their IATA codes, city names, coordinates, and country info.
| Param | Type | Description |
|---|---|---|
| homemarket | string | Market/country code (e.g., US, CL, PE, AR, BR) |
{
"type": "object",
"fields": {
"data": "array of airport objects with IATA code, city, country, coordinates, and zone",
"status": "string indicating success"
},
"sample": {
"data": [
{
"lat": -33.392778,
"lng": -70.785556,
"city": "Santiago",
"code": "SCL",
"zone": "Centro",
"active": true,
"country": "CL",
"currency": "CLP",
"longDescription": "Arturo Merino Benitez",
"shortDescription": "Santiago"
}
],
"status": "success"
}
}About the skyairline.com API
The SKY Airline API covers 5 endpoints that expose flight availability, airport listings, route networks, fare brand definitions, and promotional content from skyairline.com. The search_flights endpoint returns itineraryParts with full fare breakdowns across six brands — Basic, Light, Standard, Max, Max Flex, and Full — including seat availability per brand and support for one-way or round-trip queries.
Airports, Routes, and Network Coverage
The list_airports endpoint returns an array of airport objects, each containing an IATA code, city name, country, coordinates, and zone classification. The list_routes endpoint pairs each origin IATA code with an array of valid destination IATA codes, giving you a complete map of SKY Airline's operated route network. Both endpoints accept an optional homemarket parameter (e.g., CL, PE, AR) to filter results by market.
Flight Search and Fare Brands
The search_flights endpoint accepts required origin, destination, and departure_date inputs (YYYY-MM-DD, must be a future date), plus optional return_date for round-trip queries and passenger counts for adults, children, and infants. The response includes an itineraryParts array where each element contains flight segments, available fare options, and seat counts per brand. The get_brand_definitions endpoint complements this by returning each brand's brandId, brandName, included products, and validity dates — useful for rendering fare comparison tables without hardcoding brand metadata.
Promotions and CMS Content
The get_promotions endpoint retrieves structured promotional data from SKY Airline's home page, organized into named sections: caluga (cards with prices), huincha (alert banners), benefits (deals), and experience (discovery content). It accepts a locale parameter (en or es) and a homemarket string such as chile or unitedstates, so you can surface market-specific campaigns without scraping HTML yourself.
- Build a flight price tracker that polls search_flights across multiple date ranges and records fare changes per brand
- Render a route map by combining list_airports coordinates with list_routes origin-destination pairs
- Display a fare comparison table using get_brand_definitions to label included services alongside search_flights pricing
- Aggregate round-trip fares for a set of city pairs by passing return_date to search_flights
- Sync SKY Airline promotional banners and deals into a travel deals newsletter using get_promotions
- Filter the operated network for a specific country by passing homemarket to list_airports and list_routes
- Power a chatbot that answers 'what airports does SKY serve?' using live list_airports data
| 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.