Flights Service

Fetch more details about a flight

Fetch more details about a flight

get
https://shared-services.kong-sales-engineering.com/kongair/flights/{flightNumber}/details

Path Parameters

flightNumberstringrequired

The flight number

Example:KA0284

Response

application/json

Successful response with the requested flight details

FlightDetails

flight_numberstringrequired
in_flight_entertainmentbooleanrequired
meal_optionsarray[string]
aircraft_typestringrequired
get/flights/{flightNumber}/details
 
curl --request GET \
  --url https://shared-services.kong-sales-engineering.com/kongair/flights/KA0284/details \
  --header 'Accept: application/json' \
  --header 'Authorization: Basic Og==' \
  --header 'Content-Type: application/json'
application/json
{
  "flight_number": "flight_number",
  "in_flight_entertainment": false,
  "meal_options": [
    "[]"
  ],
  "aircraft_type": "aircraft_type"
}