GET Airports
Returns all airports.
Request Information
https://511.alaska.gov/api/v2/get/airports
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| key | Developer Key | string | Required | 
| format | Valid values are 'xml' or 'json', default 'json'. | string | Optional | 
Response Information
Resource Description
| Name | Description | Type | 
|---|---|---|
| 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
[
    {
        "Id": 5552,
        "Latitude": 51.8779639,
        "Longitude": -176.6460306,
        "Name": "Adak Airport ",
        "FAAID": "ADK",
        "Status": "",
        "Owner": "DOT&PF Controlled",
        "Region": "Southcoast",
        "Website": "https://en.wikipedia.org/wiki/Adak_Airport"
    },
    {
        "Id": 5553,
        "Latitude": 56.9386908,
        "Longitude": -154.1825556,
        "Name": "Akhiok Airport",
        "FAAID": "AKK",
        "Status": "",
        "Owner": "DOT&PF Controlled",
        "Region": "Southcoast",
        "Website": "https://en.wikipedia.org/wiki/Akhiok_Airport"
    }
]XML
<AirportsList>
	<Airports>
		<Id>5552</Id>
		<Latitude>51.8779639</Latitude>
		<Longitude>-176.6460306</Longitude>
		<Name>Adak Airport </Name>
		<FAAID>ADK</FAAID>
		<Status/>
		<Owner>DOT&PF Controlled</Owner>
		<Region>Southcoast</Region>
		<Website>https://en.wikipedia.org/wiki/Adak_Airport</Website>
	</Airports>
	<Airports>
		<Id>5553</Id>
		<Latitude>56.9386908</Latitude>
		<Longitude>-154.1825556</Longitude>
		<Name>Akhiok Airport</Name>
		<FAAID>AKK</FAAID>
		<Status/>
		<Owner>DOT&PF Controlled</Owner>
		<Region>Southcoast</Region>
		<Website>https://en.wikipedia.org/wiki/Akhiok_Airport</Website>
	</Airports>
</AirportsList>