The places/airports endpoint provides place information on airports, heliports, sea bases, and balloonports.
The following actions are supported with the places/airports endpoint:
:id | Requesting data by using the :id action is used for returning data for a particular item that has an ID associated with it. This is the primary method for requesting general weather information for a single location (observations, forecasts, advisories, etc.) as the location's name or a zip code serves as the id. Other endpoints may expect a certain value for the ID, such as storm cells whose ID value is a combination of the radar site identifier and unique identifier assigned to every storm cell. Refer to an endpoint's detailed documentation for specific information regarding how to use the :id action. |
closest | The closest action will query the API for data that is closest to the requested place and return the results, if any, in order from closest to farthest. If no limit is provided in the request, then only the closest single result will be returned. If your request does not return results, you may try setting or increasing the radius being used. |
within | The within action allows for returning data within a variety of different geometrical regions. Currently supported geometries include a circle (requires a center point and radius), rectangle (requires two coordinate points defining the top-left and bottom-right corners) and polygon (requires at least three coordinate points). Unlike the closest action, the results will not be returned in any particular order based on distance. |
search | The search action is used as a more general query method and expects the query to be defined with the custom query for the request. Unlike the closest action, results will not be returned in any particular order. |
The following parameters are optional unless otherwise noted:
p | p=:place |
Defines the location to query data for. Refer to the list of supported place value formats. |
limit | limit=:total |
The total number of results to return as an integer. Each endpoint may have a set maximum for this value depending on usage. The default limit is 1 if not specified. The maximum limit for this endpoint is 250. |
radius | radius=:distance:unit |
When requesting the closest results within a circle, the radius determines how far from the specified location to search. A valid unit value must be included in your radius value, e.g., "5mi", "10km", "25miles". If no unit is provided, your value is assumed to be in meters by default. Most endpoints utilize a default radius of 50 miles, though some endpoints, such as lightning, may have tighter restrictions specified. |
minradius | minradius=:distance:unit |
When requesting the closest results within a circle, the minradius determines how far from the specified location to search to begin searching results. A valid unit value must be included in your minimum radius value, e.g., "5mi", "10km", or "25miles". If no unit is provided, your value is assumed to be in meters by default. When combined with the radius parameter, donut style queries can be made for point data, such as lightning. |
filter | filter=:string |
Predefined filters for limiting the results. The filter value can be a single, comma-delimited or a semicolon delimited string of filter names. |
query | query=:string |
Used to filter results based on certain fields in the data set. See Advanced Queries for more details. |
sort | sort=:string |
Used to sort results based on certain fields in the data set. See Sorting for more details. |
skip | skip=:number |
Used to skip over a specific number of results in the data set. |
fields | fields=:string |
Provides a comma separated list of values for the API to return. This parameter is often used to limit the amount of data returned. See Reducing Output. |
format | format=:string |
Defines the API output format. The available options include:format=json - Standard JSON output. This is the default.format=geojson - API will output GeoJSON.If obtaining GeoJSON and using the fields parameter, be sure to include loc to ensure geographical references are available in the response.
|
The following filters can be passed to the filter parameter to reduce the results that are returned:
airport | (default) Returns all airports. |
smallairport | Returns small airports. |
medairport | Returns medium-sized airports. |
largeairport | Returns large airports. |
heliport | Returns heliports. |
balloonport | Returns balloon ports (public use balloon airports). |
sea | Returns sea bases. |
all | Returns all types. |
closed | Returns airports marked as closed. |
Use the following supported property keys when creating custom queries for your requests:
id | Query by the global recognized ID for the airport. |
name | Query by the airport name. |
city | Query by the airport's city name. |
state | Query by the airport's 2-letter state or province abbreviation (US and Canada only). |
country | Query by the airport's 2-letter country abbreviation. |
type | Query by the airport type code. Refer to the profile.type property for possible values. |
iata | Query based on the airport's 3-letter IATA code. |
You can use the following fields to sort data. Review the sorting docs page for more information on the sort functionality.
id | Sort based on the global recognized ID for the airport. |
name | Sort based on the airport name. |
type | Sort based on the airport type code. Refer to the profile.type property for possible values. |
iata | Sort based on the airport's 3-letter IATA code. |
The /[:endpoint]/[:action]?
portion within the query template below can be exchanged with any of the examples. Also, please note you will need to input your client credentials in the [ID]
and [SECRET]
fields which can be found under the Apps section of the members area.
https://api.aerisapi.com/[:endpoint]/[:action]?client_id=[ID]&client_secret=[SECRET]
Returns the airport information for Minneapolis - St Paul International Airport by using the 3 character IATA ID./places/airports/MSP?
Returns the airport information for Roanoke Regional Airport by using the 4 character ICAO ID./places/airports/KROA?
Returns the 5 closest airports of any size to downtown Minneapolis, MN./places/airports/closest/?p=minneapolis,mn&limit=5&
Returns up to 5 of the closest larger airports within a 200 mile radius of Minneapolis, MN./places/airports/closest/?p=minneapolis,mn&limit=5&radius=200miles&filter=largeairport&
The following is an example of what each object in the response will consist of. Depending on your requested action, the response may contain multiple instances of this object within an array.
{
"success": true,
"error": null,
"response": [{
"id": "egll",
"loc": {
"lat": 51.4706001282,
"long": -0.461941003799
},
"place": {
"name": "London Heathrow Airport",
"city": "London",
"state": "ENG",
"stateFull": "",
"country": "GB",
"countryFull": "United Kingdom",
"region": "",
"regionFull": "",
"continent": "eu",
"continentFull": "Europe"
},
"profile": {
"id": "egll",
"iata": "lhr",
"local": "",
"type": "la",
"typeENG": "large airport",
"elevFT": 83,
"elevM": 25.3,
"pop": null,
"tz": "Europe\/London",
"tzname": "BST",
"tzoffset": 3600,
"isDST": true,
"wxzone": null,
"firezone": null,
"fips": null,
"countyid": null
},
"relativeTo": {
"lat": 51.50853,
"long": -0.12574,
"bearing": 260,
"bearingENG": "W",
"distanceKM": 23.656,
"distanceMI": 14.699
}
}]
}
{
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"id": "egll",
"geometry": {
"type": "Point",
"coordinates": [-0.461941003799, 51.4706001282]
},
"properties": {
"id": "egll",
"loc": {
"lat": 51.4706001282,
"long": -0.461941003799
},
"place": {
"name": "London Heathrow Airport",
"city": "London",
"state": "ENG",
"stateFull": "",
"country": "GB",
"countryFull": "United Kingdom",
"region": "",
"regionFull": "",
"continent": "eu",
"continentFull": "Europe"
},
"profile": {
"id": "egll",
"iata": "lhr",
"local": "",
"type": "la",
"typeENG": "large airport",
"elevFT": 83,
"elevM": 25.3,
"pop": null,
"tz": "Europe\/London",
"tzname": "BST",
"tzoffset": 3600,
"isDST": true,
"wxzone": null,
"firezone": null,
"fips": null,
"countyid": null
},
"relativeTo": {
"lat": 51.50853,
"long": -0.12574,
"bearing": 260,
"bearingENG": "W",
"distanceKM": 23.656,
"distanceMI": 14.699
}
}
}]
}
The following properties will be provided in every response object:
Last modified: September 14, 2023