Get all aircraft and categories
GET/v4/aircraft
Used to fetch all aircraft the SkyPath system supports, use this to determine the category of your aircraft you would need to use in reading and writing turbulence data
Request
Responses
- 200
- 401
Returns the full list of aircraft types and categories
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id stringrequired
ID of aircraft type
icao stringrequired
ICAO code of aircraft
iata stringrequired
IATA code of aircraft
group stringrequired
SkyPath aircraft category code
title stringrequired
Full title and name of aircraft
size stringrequired
aircraft size
family stringrequired
aircraft generic model family
[
{
"id": "B737",
"icao": "B737",
"iata": "73G",
"group": "C60",
"title": "Boeing 737-700",
"size": "medium",
"family": "737"
}
]
Returned in case of wrong API KEY or non authorized to do operation
- application/json
- Schema
- Example (from schema)
Schema
statusCode numberrequired
Default value: 401
message stringrequired
Default value: Unauthorized
{
"statusCode": 401,
"message": "Unauthorized"
}
Loading...