API for FBOs - Flight Awareness

The endpoints below support flight awareness for FBOs by monitoring incoming and outgoing flights to improve service scheduling, anticipate peak traffic periods, and reduce ground delays through proactive coordination.

Select each endpoint tab to view details along with sample inputs and responses.

  • Endpoint: getFlights

    FBOs use getFlights to understand how frequently an aircraft operates over time, helping identify regular visitors, distinguish active aircraft from infrequent traffic, and support proactive service planning and customer recognition.

    Practical Example

    Review monthly flight counts and flight hours for a specific aircraft to understand how frequently it operates throughout the year. Use this insight to identify recurring traffic patterns, anticipate repeat service needs, and tailor ground services and customer engagement for regularly visiting aircraft.

    Input: Aircraft ID

    Response (truncated):

    {
      "flights": [
        {
          "flightyear": 2025,
          "flightmonth": 1,
          "flights": 0,
          "flighthours": 0
        },
        {
          "flightyear": 2025,
          "flightmonth": 2,
          "flights": 8,
          "flighthours": 23
        },
        {
          "flightyear": 2025,
          "flightmonth": 3,
          "flights": 4,
          "flighthours": 13
        },
        {
          "flightyear": 2025,
          "flightmonth": 4,
          "flights": 6,
          "flighthours": 11
        },
        {
          "flightyear": 2025,
          "flightmonth": 5,
          "flights": 8,
          "flighthours": 18
        },
        {
          "flightyear": 2025,
          "flightmonth": 6,
          "flights": 5,
          "flighthours": 23
        },
        {
          "flightyear": 2025,
          "flightmonth": 7,
          "flights": 5,
          "flighthours": 15
        },
        {
          "flightyear": 2025,
          "flightmonth": 8,
          "flights": 10,
          "flighthours": 25
        },
        {
          "flightyear": 2025,
          "flightmonth": 9,
          "flights": 5,
          "flighthours": 12
        },
        {
          "flightyear": 2025,
          "flightmonth": 10,
          "flights": 2,
          "flighthours": 2
        },
        {
          "flightyear": 2025,
          "flightmonth": 11,
          "flights": 9,
          "flighthours": 16
        },
        {
          "flightyear": 2025,
          "flightmonth": 12,
          "flights": 8,
          "flighthours": 20
        },
        {
          "flightyear": 2026,
          "flightmonth": 1,
          "flights": 5,
          "flighthours": 19
        }
      ]
    }
  • Endpoint: getEventList

    FBOs use getEventList to maintain operational awareness of aircraft changes that affect arrival planning, service readiness, and customer coordination. By monitoring recent updates across a targeted model set, an FBO can anticipate positioning shifts, confirm the correct operating entity, and keep service and billing contacts aligned to the aircraft currently in motion through its region.

    Practical Example

    Review recent aircraft events for high-traffic aircraft models to identify changes that impact ground handling and customer coordination. This includes base location updates, shifts in operating or management relationships, and other aircraft detail changes that influence staffing, service preparation, and arrival communications.

    Input (key fields only)

    {
      "startdate": "12/01/2025",
      "enddate": "12/15/2025",
      "modlist": [
         1210,
         1211,
         1320,
         1290,
         1310
      ]
    }

    Response (truncated)

    {
      "events": [
        {
          "aircraftid": 199099,
          "make": "GULFSTREAM",
          "model": "G650ER",
          "sernbr": "6093",
          "regnbr": "N287Z",
          "yearmfr": 2013,
          "yeardlv": 2014,
          "date": "2025-12-02T05:36:06",
          "subject": "New Owner",
          "description": "N2-650 Aviation, LLC",
          "companyid": 520333,
          "contactid": 790826
        },
        {
          // additional records follow
        }
      ]
    }

Was this article helpful?

/