Aircraft API
The Aircraft API provides detailed technical specs on over 1,000 airplane models from propeller planes to jumbo jets.
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 361ms | 382ms | 438ms | 592ms | 1109ms |
Didn't find what you were looking for? Suggest an improvement
/v1/aircraft GET
https://api.api-ninjas.com/v1/aircraft
Returns a list of aircrafts that match the given parameters. This API only supports airplanes - for helicopter specs please use our Helicopter API.
Parameters
At least one of the following parameters (other than limit) must be set.
manufactureroptionalCompany that designed and built the aircraft.
modeloptionalAircraft model name.
engine_typeoptionalType of engine. Must be one of:
piston,propjet,jet.min_speedoptionalMinimum max. air speed in knots.
max_speedoptionalMaximum max. air speed in knots.
min_rangeoptionalMinimum range of the aircraft in nautical miles.
max_rangeoptionalMaximum range of the aircraft in nautical miles.
min_lengthoptionalMinimum length of the aircraft in feet.
max_lengthoptionalMaximum length of the aircraft in feet.
min_heightoptionalMinimum height of the aircraft in feet.
max_heightoptionalMaximum height of the aircraft in feet.
min_wingspanoptionalMinimum wingspan of the aircraft in feet.
max_wingspanoptionalMaximum wingspan of the aircraft in feet.
limitoptionalHow many results to return. Must be between
1and30. Default is1.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Sample Request Live Demo!
https://api.api-ninjas.com/v1/aircraft?manufacturer=Gulfstream&model=G550Headers
X-Api-KeyLog in or sign up to get your API KeySample Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[
{
"manufacturer": "Gulfstream Aerospace",
"model": "G550",
"engine_type": "Jet",
"engine_thrust_lb_ft": "15385",
"max_speed_knots": "590",
"cruise_speed_knots": "566",
"ceiling_ft": "51000",
"takeoff_ground_run_ft": "5910",
"landing_ground_roll_ft": "2770",
"gross_weight_lbs": "91000",
"empty_weight_lbs": "47900",
"length_ft": "96.417",
"height_ft": "25.833",
"wing_span_ft": "93.5",
"range_nautical_miles": "6750"
}
]Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/aircraft?manufacturer=Gulfstream&model=G550" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.