Search code examples
apisabre

Which Sabre API can get count of booked passengers on a flight?


I need help to identify an API that can give us a count of passengers booked on a flight. Input is greatly appreciated. Thnx.


Solution

  • There are sabre web services that can provide that information, but which service you use depends if you're within the flight operational window or not. If the flight is initialized and within the operational window (which is normally 3 - 5 days before flight departure) you can use the ACS (airport control system) services.

    • ACS_FlightDetailsRQ - This will return a count of passengers booked in each cabin of a flight
    • ACS_PassengerListRQ - This will return more detailed information for all passengers that are booked on a flight.

    If you're before the operational window, then you need to use other services that show the booked passengers on the flight. From memory I think TripReportsRQ is a web service that can provide that information.

    Also there's always the SabreCommandLLSRQ service that will let you issue native sabre commands to obtain this information.