API for MROs - Technical Vetting & Assessment

The endpoints below support technical vetting and assessment for MROs by evaluating aircraft condition, engines, avionics, and installed equipment to ensure thorough airworthiness review, reduce inspection surprises, and enable predictive maintenance planning.

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

  • Endpoint: getAirframe

    MROs use getAirframe to quickly assess airframe utilization and recency of reported times, supporting initial maintenance planning, inspection timing, and workload prioritization for a specific aircraft.

    Practical Example

    View total airframe hours, landings, and last reported time for a specific aircraft to validate current utilization and determine whether the aircraft is approaching inspection thresholds or requires near-term maintenance planning.

    Input: Aircraft ID

    Response (truncated)

    {
      "airframe": {
        "aftt": 8520,
        "landings": 4523,
        "timesasofdate": "2025-03-18T00:00:00",
        "estaftt": 8617
      }
    }
  • Endpoint: getEngine

    MROs use getEngine to review engine condition, maintenance program status, and time remaining to overhaul, supporting accurate inspection planning and maintenance forecasting.

    Practical Example

    View engine model information, maintenance program details, and time since new and overhaul for each engine on a specific aircraft. Use this information to assess upcoming maintenance requirements and plan shop visits accordingly.

    Input: Aircraft ID

    Response (truncated)

    {
      "engine": {
        "onconditiontbo": null,
        "maintenanceprogram": "Confirmed not on a maintenance program",
        "model": "TFE731-3C-200G",
        "enginenoiserating": 0,
        "engines": [
          {
            "seqnbr": 1,
            "serialnum": "P96168",
            "ttsnew": 8398,
            "tbo": 4200,
            "tcsn": 4253,
            "sohhrs": 38,
            "shihrs": null,
            "sohcycles": null,
            "shscycles": null
          },
          {
            "seqnbr": 2,
            "serialnum": "P96169",
            "ttsnew": 8406,
            "tbo": 4200,
            "tcsn": 4324,
            "sohhrs": 38,
            "shihrs": null,
            "sohcycles": null,
            "shscycles": null
          }
        ]
      }
    }
  • Endpoint: getAvionics

    MROs use getAvionics to identify installed avionics and navigation equipment, supporting compliance checks, upgrade planning, and preparation for avionics maintenance or modification work.

    Practical Example

    View the list of installed avionics for a specific aircraft to verify current equipment, assess regulatory compliance, and scope potential avionics inspections or upgrade projects.

    Input: Aircraft ID

    Response (truncated)

    {
      "avionics": [
        {
          "name": "ADF",
          "description": "Dual Collins"
        },
        {
          "name": "Autopilot",
          "description": "Collins APS-80"
        },
        {
          "name": "Avionics Package",
          "description": "Collins Pro Line 21"
        },
        {
          "name": "Communication Radios",
          "description": "Dual Collins"
        },
        {
          "name": "CVR",
          "description": "Fairchild GA100"
        },
        {
          "name": "DME",
          "description": "Dual Collins"
        },
        {
          "name": "EFIS",
          "description": "Collins Pro Line 21 3-tube"
        },
        {
          "name": "Flight Director",
          "description": "Dual Collins"
        },
        {
          "name": "Flight Rules",
          "description": "IFR"
        },
        {
          "name": "FMS",
          "description": "Dual Universal UNS-1C"
        },
        {
          "name": "GPS",
          "description": "Universal"
        },
        {
          "name": "Hi Frequency",
          "description": "Honeywell KHF-950 w/SELCAL"
        },
        {
          "name": "MFD",
          "description": "Yes"
        },
        {
          "name": "Navigation Radios",
          "description": "Dual Collins"
        },
        {
          "name": "Radar Altimeter",
          "description": "Collins"
        },
        {
          "name": "SATCOM",
          "description": "Iridium"
        },
        {
          "name": "TAWS",
          "description": "Universal EGPWS Class A"
        },
        {
          "name": "TCAS",
          "description": "Collins TCAS-4000 TCAS-II"
        },
        {
          "name": "Transponder",
          "description": "Collins TDR-94D Mode S"
        },
        {
          "name": "Weather Radar",
          "description": "Collins WXR-850 (color)"
        }
      ]
    }
  • Endpoint: getFeatures

    MROs use getFeatures to verify installed aircraft features and equipment status, supporting maintenance scoping and ensuring required systems are present and accounted for before service.

    Practical Example

    View the list of aircraft features and their equipped status for a specific aircraft to confirm installed systems and plan maintenance tasks or inspections accordingly.

    Input: Aircraft ID

    Response (truncated)

    {
      "features": [
        {
          "name": "Flight Management System",
          "code": "FMS",
          "status": "Equipped"
        },
        {
          "name": "Aft Lavatory",
          "code": "AFL",
          "status": "Equipped"
        },
        {
          "name": "Airframe Maintenance Program",
          "code": "AMP",
          "status": "Equipped"
        },
        {
          "name": "Belted Lav",
          "code": "BLV",
          "status": "Equipped"
        },
        {
          "name": "Extended Range/Auxiliary Fuel",
          "code": "ER",
          "status": "Equipped"
        },
        {
          "name": "Forward Galley",
          "code": "FWG",
          "status": "Equipped"
        },
        {
          "name": "High-Speed Data/Wifi",
          "code": "HSD",
          "status": "Equipped"
        },
        {
          "name": "Engine Maintenance Program",
          "code": "EMP",
          "status": "Not Reported"
        },
        {
          "name": "RVSM",
          "code": "RVS",
          "status": "Equipped"
        },
        {
          "name": "Auxiliary Power Unit",
          "code": "APU",
          "status": "Equipped"
        },
        {
          "name": "Gross Weight Increase Mod",
          "code": "GWM",
          "status": "Equipped"
        },
        {
          "name": "SATCOM",
          "code": "SAT",
          "status": "Equipped"
        },
        {
          "name": "ADS-B Capable",
          "code": "ADS",
          "status": "Equipped"
        },
        {
          "name": "Gulfstream Computerized Maintenance Program (G-CMP)",
          "code": "GCM",
          "status": "Not Reported"
        },
        {
          "name": "Terrain Awareness & Warning System",
          "code": "TAW",
          "status": "Standard"
        },
        {
          "name": "Traffic Collision Avoidance System",
          "code": "TCA",
          "status": "Standard"
        },
        {
          "name": "Cockpit Voice Recorder",
          "code": "CVR",
          "status": "Standard"
        },
        {
          "name": "Dual Flight Management Systems",
          "code": "DFM",
          "status": "Standard"
        },
        {
          "name": "Weather Radar",
          "code": "RDR",
          "status": "Standard"
        }
      ]
    }
  • Endpoint: getAdditionalEquipment

    MROs use getAdditionalEquipment to review non-standard equipment and aircraft modifications, supporting accurate maintenance scoping and preparation before work begins.

    Practical Example

    View additional equipment and modification details for a specific aircraft to identify unique components or alterations that may affect maintenance procedures, parts requirements, or labor planning.

    Input: Aircraft ID

    Response (truncated)

    {
      "additionalequipment": [
          {
          "name": "modification",
          "description": "Winglets"
        },
        {
          "name": "general",
          "description": "Gross weight increase mod, extended baggage mod, dual lead acid batteries, 77 cubic-foot oxygen bottle, extended-range fuel tank, fast refueling mod"
        }
      ]
    }
  • Endpoint: getInterior

    MROs use getInterior to understand cabin configuration and interior components, supporting interior maintenance planning, refurbishment scoping, and parts preparation.

    Practical Example

    View interior layout and cabin detail information for a specific aircraft to assess seating configuration, cabin components, and recent interior work prior to scheduling interior maintenance or upgrades.

    Input: Aircraft ID

    Response (truncated)

    {
      "interior": [
        {
          "name": "doneby",
          "description": "West Star Aviation, Grand Junction"
        },
        {
          "name": "doneon",
          "description": "2017"
        },
        {
          "name": "passengers",
          "description": "16"
        },
        {
          "name": "configuration",
          "description": "Executive"
        },
        {
          "name": "general",
          "description": "Gulfstream Hallmark interior; new interior soft goods installed in 2017 including new carpeting, leather seating, fabric divan, lower sidewalls, window line & headliner"
        },
        {
          "name": "seating",
          "description": "Forward 4-place club, mid-cabin conference group, dual aft 4-place divans"
        },
        {
          "name": "refreshment equipment",
          "description": "Forward full-service galley w/microwave oven, high-temperaure oven, dual coffeemakers & single hot cup"
        },
        {
          "name": "cabinetry/woodwork",
          "description": "Medium dark close-grained cabinetry, mid-cabin credenza"
        },
        {
          "name": "entertainment equipment",
          "description": "Airshow Genesys passenger information system, forward 20-inch monitor, aft 14-inch monitor, four 4-inch personal monitors at club positions"
        },
        {
          "name": "business equipment",
          "description": "Gogo AVANCE L5, Gogo Galileo worldwide Wi-Fi"
        },
        {
          "name": "accessories",
          "description": "Ten 115-volt AC outlets, brushed nickel fixtures"
        },
        {
          "name": "lavatory",
          "description": "Forward crew lav, aft lav"
        }
      ]
    }
  • Endpoint: getExterior

    MROs use getExterior to review aircraft exterior configuration and condition, supporting paint, repair, and inspection planning.

    Practical Example

    View exterior details such as paint scheme and finish for a specific aircraft to assess exterior condition and prepare for paint, cosmetic repairs, or exterior inspections.

    Input: Aircraft ID

    Response (truncated)

    {
      "exterior": [
        {
          "name": "doneon",
          "description": "2024"
        },
        {
          "name": "colors",
          "description": "Matterhorn white upper & midnight blue lower w/light & dark gray stripes"
        },
        {
          "name": "general",
          "description": "Exterior is in excellent condition as reported 03/18/2025"
        }
      ]
    }

Was this article helpful?

/