> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flightportrait.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Flight

> Observed legs, airframes, and recent operations for one flight number. Typical local times when known. 404 if none.



## OpenAPI

````yaml /openapi.json get /v1/flight/{callsign}
openapi: 3.1.0
info:
  title: FlightPortrait network API
  description: |-
    No API key. Rate limits are per IP over a 600 second window. 429 means wait.

    Data is ODbL 1.0. Credit "FlightPortrait network feeders".
    Terms: https://flightportrait.com/network/terms
  version: 1.0.0
servers:
  - url: https://data.flightportrait.com
security: []
tags:
  - name: Live
    description: What the network hears now.
  - name: History
    description: Observed legs and routes.
  - name: Stations
    description: Feeder roster.
  - name: Reference
    description: Aircraft, airlines, airports, types.
  - name: Meta
    description: Index and health.
paths:
  /v1/flight/{callsign}:
    get:
      tags:
        - History
      summary: Flight
      description: >-
        Observed legs, airframes, and recent operations for one flight number.
        Typical local times when known. 404 if none.
      operationId: flight
      parameters:
        - name: callsign
          in: path
          required: true
          schema:
            type: string
            description: Callsign or flight ident.
            title: Callsign
          description: Callsign or flight ident.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema: {}
              example:
                callsign: SQ322
                legs:
                  - org: SIN
                    dst: LHR
                    flights: 12
                    days: 7
                    last: '2026-08-27'
                    dep: '09:00'
                    arr: '15:10'
                    type: A359
                aircraft:
                  - hex: 76cd06
                    reg: 9V-SHF
                    type: A359
                    flights: 8
                recent:
                  - date: '2026-08-27'
                    org: SIN
                    dst: LHR
                    dep_ts: 1787800000
                    arr_ts: 1787845000
                window: '60'
        '404':
          description: Not found.
        '422':
          description: Invalid path.
        '429':
          description: Rate limited. Per IP, 600 second window.

````