GET Airports

Returns all airports.

Request Information

https://511.alaska.gov/api/v2/get/airports

URI Parameters

URI Parameters
NameDescriptionTypeAdditional information
key

Developer Key

string

Required

format

Valid values are 'xml' or 'json', default 'json'.

string

Optional

Response Information

Resource Description


Resource Description
NameDescriptionType
Id

A unique identifier.

integer
Latitude

The latitude describing the location. Format: double between -90 and 90.

double
Longitude

The longitude describing the location. Format: double between -180 and 180.

double
Name

Name of the Airport

string
FAAID

FAA Id of the airport

string
Status

Status of the airport

string
Owner

Owner of the airport

string
Region

Region of the airport.

string
Website

Website of the airport

string

Response Formats

JSON

Sample:
[
	{
		"Id": 92,
		"Latitude": 64.8151101,
		"Longitude": -147.8564476,
		"Name": "Fairbanks International Airport",
		"FAAID": "FAI",
		"Status": "Normal Operations",
		"Owner": "DOT&PF Controlled",
		"Website": "https://dot.alaska.gov/faiiap/"
	},
	{
		"Id": 93,
		"Latitude": 54.8474458,
		"Longitude": -163.4103222,
		"Name": "False Pass Airport",
		"FAAID": "KFP",
		"Status": "Normal Operations",
		"Owner": "DOT&PF Controlled",
		"Website": "https://en.wikipedia.org/wiki/False_Pass_Airport"
	}
]

XML

Sample:
<AirportsList>
    <Airports>
        <Id>92</Id>
        <Latitude>64.8151101</Latitude>
        <Longitude>-147.8564476</Longitude>
        <Name>Fairbanks International Airport</Name>
        <FAAID>FAI</FAAID>
        <Status>Normal Operations</Status>
        <Owner>DOT&PF Controlled</Owner>
        <Website>https://dot.alaska.gov/faiiap/</Website>
    </Airports>
    <Airports>
        <Id>93</Id>
        <Latitude>54.8474458</Latitude>
        <Longitude>-163.4103222</Longitude>
        <Name>False Pass Airport</Name>
        <FAAID>KFP</FAAID>
        <Status>Normal Operations</Status>
        <Owner>DOT&PF Controlled</Owner>
        <Website/>
    </Airports>
</AirportsList>