Helicopter API
The Helicopter API provides detailed technical specs on hundreds of helicopter models.
For fixed-wing aircraft specs, please use our Aircraft API.
From 8,312 users
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 361ms | 375ms | 441ms | 663ms | 1104ms |
Didn't find what you were looking for? Suggest an improvement
/v1/helicopter GET
https://api.api-ninjas.com/v1/helicopter
Get helicopter technical specifications that match the given parameters.
Parameters
manufactureroptionalCompany that designed and built the helicopter.
modeloptionalHelicopter model name.
min_speedoptionalMinimum max. air speed in knots.
max_speedoptionalMaximum max. air speed in knots.
min_rangeoptionalMinimum range of the helicopter in nautical miles.
max_rangeoptionalMaximum range of the helicopter in nautical miles.
min_lengthoptionalMinimum length of the helicopter in feet.
max_lengthoptionalMaximum length of the helicopter in feet.
min_heightoptionalMinimum height of the helicopter in feet.
max_heightoptionalMaximum height of the helicopter in feet.
limitoptionalHow many results to return. Must be between
1and30. Default is1.
At least one of the following parameters (other than limit) must be set:
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
Returns an array of helicopter objects, each containing:
manufacturerCompany that designed and built the helicopter.
modelHelicopter model name.
max_speed_sl_knotsMaximum air speed at sea level in knots.
cruise_speed_sl_knotsCruise speed at sea level in knots.
range_nautical_milesRange in nautical miles.
cruise_time_minCruise time in minutes.
fuel_capacity_gallonsFuel capacity in gallons.
gross_external_load_lbsGross external load capacity in pounds.
external_load_limit_lbsExternal load limit in pounds.
main_rotor_diameter_ftMain rotor diameter in feet.
num_bladesNumber of rotor blades.
blade_materialMaterial used for the rotor blades.
rotor_typeType of rotor system.
storage_width_ftStorage width in feet.
length_ftLength in feet.
height_ftHeight in feet.
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/helicopter?manufacturer=Bell&model=206Headers
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
20
[
{
"manufacturer": "Bell Helicopter",
"model": "206L-3",
"max_speed_sl_knots": "130",
"cruise_speed_sl_knots": "110",
"range_nautical_miles": "305",
"cruise_time_min": "180",
"fuel_capacity_gallons": "110",
"gross_external_load_lbs": "4250",
"external_load_limit_lbs": "2000",
"main_rotor_diameter_ft": "37.0",
"num_blades": "2",
"blade_material": "metal",
"rotor_type": "SRT",
"storage_width_ft": "7.333",
"length_ft": "42.667",
"height_ft": "10.5"
}
]Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/helicopter?model=Bell%20206" \
-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.