Searching airports
Searching using a query
Search Airports using a text query
GET
https://api.aviowiki.com/free/airports/search
This endpoint allows you to conduct an airport search using a free-text query string.
Query Parameters
Name | Type | Description |
---|---|---|
page | number | The page number for pagination, starting from `0` to indicate the first page. |
size | number | The number of results in a page, for pagination. |
query | string | The query string you want to look for. |
Headers
Name | Type | Description |
---|---|---|
Authorization | String | An API Token using Bearer authorization. |
Format of the returned objects
The response will be a Paged List of results. Each result object contains a limited set of information that we consider to be essential to identify a location.
For this endpoint the properties available in the response are:
Property | Type | Description |
| string | A string with the AID of the airport, with |
| string, | A string with the 4-letters ICAO code of the airport, or |
| string, | A string with the 3-letters IATA code of the airport, or |
| string, | A string with the FAA code, or |
| object, | A Coordinates object which represents the location of the Aerodrome Reference Point.
This is |
| object, | A Country object which represents the country at which an airport is located.
|
| string, | The timezone of the airfield as noted in the IANA Time Zone Database.
|
| string, | The name of the airport. This should be the official name of the airport written in Latin characters. |
| string, | A string containing the name of the city served by the airport. In some countries, like the USA, this includes the state. For example: |
Last updated