Aircraft API
The Aircraft API provides detailed technical specs on over 1,000 airplane models from propeller planes to jumbo jets.
From 9,339 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 314ms | 333ms | 411ms | 599ms | 1208ms |
Similar APIs
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.
Response
Returns an array of aircraft objects, each containing:
manufacturerCompany that designed and built the aircraft.
modelAircraft model name.
engine_typeType of engine (e.g., "Jet", "Piston", "Propjet").
engine_thrust_lb_ftEngine thrust in pounds-force.
max_speed_knotsMaximum air speed in knots.
cruise_speed_knotsCruise speed in knots.
ceiling_ftService ceiling in feet.
takeoff_ground_run_ftTakeoff ground run distance in feet.
landing_ground_roll_ftLanding ground roll distance in feet.
gross_weight_lbsGross weight in pounds.
empty_weight_lbsEmpty weight in pounds.
length_ftLength in feet.
height_ftHeight in feet.
wing_span_ftWingspan in feet.
range_nautical_milesRange in nautical miles.
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/aircraft?manufacturer=Gulfstream&model=G550Headers
X-Api-KeyLog in or sign up to get your API KeySample Response
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.