v1

latestOpenAPI 3.1.02026-07-22162733.8 KB
Flights

Aircraft a pilot may switch to for a bid

Aircraft eligible for this bid's flight, narrowed server-side by the VA's rank / typerating / location / booking rules (the reference module reuses FlightService::filterSubfleets). The Stratos client renders this as a dropdown on the booking card when the allow_aircraft_changes airline setting is on. changeable is false when the authenticated pilot has their own SimBrief OFP for this flight — the lock is per-pilot, so another pilot's OFP does not affect it.

get/flights/bookings/{bid}/aircraft

Path parameters

bidinteger required

The bid ID.

Response

Eligible aircraft for the bid.

changeableboolean required

False when the authenticated pilot has their own SimBrief OFP for this flight, in which case aircraft is empty and the client shows static text.

Example response

{
  "aircraft": [
    {
      "name": "Boeing 737-800",
      "registration": "VH-VXA",
      "icao": "B738",
      "subfleet": "B738"
    }
  ]
}
All 16 operations