Aircraft API
The Aircraft API provides detailed technical specs on over 1,000 airplane models from propeller planes to jumbo jets.
/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.
- manufactureroptional- Company that designed and built the aircraft. 
- modeloptional- Aircraft model name. 
- engine_typeoptional- Type of engine. Must be one of: - piston,- propjet,- jet.
- min_speedoptional- Minimum max. air speed in knots. 
- max_speedoptional- Maximum max. air speed in knots. 
- min_rangeoptional- Minimum range of the aircraft in nautical miles. 
- max_rangeoptional- Maximum range of the aircraft in nautical miles. 
- min_lengthoptional- Minimum length of the aircraft in feet. 
- max_lengthoptional- Maximum length of the aircraft in feet. 
- min_heightoptional- Minimum height of the aircraft in feet. 
- max_heightoptional- Maximum height of the aircraft in feet. 
- min_wingspanoptional- Minimum wingspan of the aircraft in feet. 
- max_wingspanoptional- Maximum wingspan of the aircraft in feet. 
- limitoptional- How many results to return. Must be between - 1and- 30. Default is- 1.
Headers
- X-Api-Keyrequired- API 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.