airlinequality.com APIairlinequality.com ↗
Access airline reviews, ratings, photos, and search from airlinequality.com. 5 endpoints covering review lists, summary ratings, cabin filters, and photo galleries.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/8fa550cd-95a3-48de-abcf-377ab4192c43/get_airline_list' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the full list of airlines with their names and slugs. Returns all airlines indexed on the site.
No input parameters required.
{
"type": "object",
"fields": {
"total": "integer total number of airlines",
"airlines": "array of objects each with 'name' (string) and 'slug' (string)"
},
"sample": {
"data": {
"total": 581,
"airlines": [
{
"name": "AB Aviation",
"slug": "ab-aviation"
},
{
"name": "Aegean Airlines",
"slug": "aegean-airlines"
}
]
},
"status": "success"
}
}About the airlinequality.com API
The airlinequality.com API exposes 5 endpoints covering the full catalog of airline reviews, ratings, and photos indexed on Skytrax. Starting with get_airline_list to retrieve all airline slugs, you can then pull paginated reviews filtered by cabin class, fetch aggregate summary ratings broken down by category, retrieve community photos via get_airline_photos, and run keyword searches across airlines and airports.
Airline Reviews and Ratings
The get_airline_reviews endpoint accepts a required slug parameter (sourced from get_airline_list) and returns paginated review objects. Each review includes rating, title, author, country, date, verified status, text, and per-category ratings. You can filter by cabin class using accepted values Economy, Business, First, or Premium Economy, and control page size with limit. The total_reviews field tells you how many records match a given filter combination.
Summary Ratings and Photo Access
get_airline_summary_ratings returns a single object per airline with overall_rating (out of 10), review_count, and a category_ratings map that breaks the score down into sub-dimensions like seat comfort or food quality. It also exposes a review_id string that serves as the required input for get_airline_photos. That endpoint returns an array of photo objects, each with a full-size url, a thumbnail URL, and a caption.
Search
The search_reviews endpoint accepts a free-text query and returns matching result objects with title, url, and snippet fields. Queries can be single-word (lufthansa) or multi-word (business class Emirates), covering airlines and airports. This makes it useful for discovery when you don't already have a slug.
- Compare cabin-class-specific ratings across competing airlines using
get_airline_reviewswith thecabinfilter - Build an airline quality dashboard by combining
overall_ratingandcategory_ratingsfromget_airline_summary_ratings - Aggregate verified traveler reviews for a specific route or airline to surface sentiment trends over time
- Populate a travel app's photo gallery using image URLs and thumbnails from
get_airline_photos - Enable airline search autocomplete or discovery using keyword queries through
search_reviews - Track review volume changes over time by monitoring the
total_reviewsfield per airline and cabin class
| 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 airlinequality.com have an official developer API?+
How do I get cabin-class-specific reviews, and what fields are returned?+
get_airline_reviews accepts an optional cabin parameter with accepted values Economy, Business, First, or Premium Economy. Each review object in the response includes rating, title, author, country, date, verified, text, and a set of category-level ratings. The total_reviews field reflects the count after the cabin filter is applied.Does the API cover airport reviews in addition to airline reviews?+
get_airline_reviews, get_airline_summary_ratings, get_airline_photos) cover airlines only. search_reviews can surface airport-related results as snippets, but there are no structured airport-review endpoints returning per-field data. You can fork this API on Parse and revise it to add an airport reviews endpoint.Is there a limit on how many photos are returned by `get_airline_photos`?+
review_id as an array; there is no documented per-request cap on photo count. The review_id must first be obtained from get_airline_summary_ratings — it is not interchangeable with other identifiers.Does the API expose reviewer profiles or historical review data per user?+
author name and country fields within each review object. There are no per-user profile endpoints or historical timelines per reviewer. You can fork this API on Parse and revise it to add a reviewer-profile endpoint if that data is accessible on the source site.