Equipment Response

The Equipment Response is returned for the following request type:

Table of Contents
Equipment
Element Cardinality Description
<iata>777</iata> 1..1 The IATA code for the equipment type. (String)
<name>Boeing 777 Passenger</name> 1..1 The descriptive name for the equipment type. (String)
<turboProp>false</turboProp> 1..1 Boolean value indicating if the equipment type uses TurboProp propulsion (Boolean).
<jet>true</jet> 1..1 Boolean value indicating if the equipment type uses jet propulsion (Boolean).
<widebody>true</widebody> 1..1 Boolean value indicating if the equipment type is a wide-body airframe (Boolean).
<regional>false</regional> 1..1 Boolean value indicating if the equipment type is a regional airframe (Boolean).
Example XML Output
<response> <request xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="interpretedRequest"> <endpoint>iataCode</endpoint> <code> <requested>72W</requested> <intepreted>72W</intepreted> </code> <url> https://api.flightstats.com/flex/equipment/rest/v1/xml/iata/72W </url> </request> <equipment> <equipment> <iata>72W</iata> <name>Boeing 727-200 (winglets) Passenger</name> <turboProp>false</turboProp> <jet>true</jet> <widebody>false</widebody> <regional>false</regional> </equipment> </equipment> </response>
Example JSON Output
{ "request": { "endpoint": "iataCode", "code": { "requested": "72W", "interpreted": "72W" }, "url": "https://api.flightstats.com/flex/equipment/rest/v1/json/iata/72W" }, "equipment": [ { "iata": "72W", "name": "Boeing 727-200 (winglets) Passenger", "turboProp": false, "jet": true, "widebody": false, "regional": false } ] }