---
title: "Fetch more details about a flight"
url: "https://devportal.jilson.dev/apis/kong-air-ap-is-1-0-0/versions/7a8b8282-7fdc-432a-a618-88582e8fb712/operations/get-flight-details"
---

> Full API specification: https://devportal.jilson.dev/apis/kong-air-ap-is-1-0-0/versions/7a8b8282-7fdc-432a-a618-88582e8fb712.md

# Fetch more details about a flight

`GET` `/flights/{flightNumber}/details`

Operation ID: `get-flight-details`

Fetch more details about a flight

## Path parameters

- `flightNumber` (string, required) - The flight number

## Responses

- `200` - Successful response with the requested flight details
- `404` - Flight not found

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: KongAir APIs
  version: 1.0.0
servers:
  - url: https://api.kongair.dev
    description: KongAir API Dev
paths:
  /flights/{flightNumber}/details:
    get:
      summary: Fetch more details about a flight
      description: Fetch more details about a flight
      operationId: get-flight-details
      tags:
        - Flights
      parameters:
        - name: flightNumber
          in: path
          description: The flight number
          required: true
          style: simple
          schema:
            type: string
      responses:
        "200":
          description: Successful response with the requested flight details
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/FlightDetails"
        "404":
          description: Flight not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
security:
  - ApiKeyAuth: []
  - BearerAuth: []
components:
  schemas:
    FlightDetails:
      type: object
      properties:
        flight_number:
          type: string
        in_flight_entertainment:
          type: boolean
        meal_options:
          type: array
          items:
            type: string
        aircraft_type:
          type: string
      required:
        - flight_number
        - in_flight_entertainment
        - meal_options
        - aircraft_type
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
```
