JETNET API Release Notes 3/20/25

“Company & Contact” Blocks Added

The following endpoints now include Company & Contact details:

  • getRelationships()
  • getAircraft()
  • getAircraftHistoryList()
  • getAircraftHistoryListPaged()

Batch Requests for Aircraft IDs

You can now pass an array of Aircraft IDs into getRelationships() to retrieve relationships in bulk.

Example JSON request:

{
"aclist":[52005,246175,200164,126604]
}

Exact Match for Registration Numbers

Added support for exact matching on registration numbers using "exactMatchReg": true.
Applicable to the following endpoints:

  • getCondensedOwnerOperators()
  • getCondensedOwnerOperatorsPaged()
  • getAircraftList()

Example JSON request:

{
"regnbr": "N491N",
"exactMatchReg": true
}

Manufacturer (MFG) & ICAO Type Added

The Manufacturer (MFG) and ICAO Type fields have been added to:
getCondensedOwnerOperators()
getAircraftList()

Example JSON request:


{
"mfr": "Gulfstream Aerospace Corporation",
"icao": "GLF5"
}

Search by Base Country List

You can now filter aircraft by base country in the following endpoints:

  • getAircraftList()
  • getCondensedOwnerOperators()
  • getCondensedOwnerOperatorsPaged()

Example JSON request:

{
"basecountrylist": [
"United States",
"Mexico",
"Canada"
]
}

Standardized State Field in Company Endpoints

For consistency, the getCompany() and getCompanyList() endpoints now return:

  • "state" as the state abbreviation
  • "statename" as the full state name
{
"state": "VA",
"statename": "Virginia"
}

Was this article helpful?

/