aviowiki
  • Introduction
  • Authentication
    • Users
    • API Tokens
    • Authorisation
  • Conventions
    • Data format
    • aviowiki IDs
    • Pagination
  • Errors
  • Reward Points
  • Open Data
    • Introduction
    • Definition
  • Data Models
    • Airport
    • Authority
    • Availability
    • Aircraft Position
    • Coordinates
    • Region
    • Country
    • Governing District
    • Runway
    • Provider
    • Generic Product
    • Fuel Product
    • Fuel Fee
    • Webhook
    • Error
    • Operational Note
      • Airport Operational Note
      • Country Operational Note
  • Free Endpoints
    • Limitations
    • Free airport endpoints
      • Airport data
      • Searching airports
  • Authenticated Endpoints
    • Airport endpoints
      • Searching airports
      • Airport data
      • Authorities at an airport
      • Availability of an airport
        • Aerodrome Rescue and Fire Fighting availaibility
        • Air Traffic Control availability
        • Customs, Immigration and Quarantine facilities availability
        • Movement availability
      • Runways at an airport
      • Providers at an airport
      • Weather at an airport
      • Sun times at an airport
      • Operational notes at an airport
    • Aircraft endpoints
    • Aircraft position endpoints
    • Flight endpoints
    • Runway endpoints
      • Runway data
    • Provider endpoints
      • Provider data
      • Availability of a provider
      • Country of a provider
      • Pictures of a provider
      • Logo of a provider
      • Products of a provider
      • Fuel products of a provider
    • Operational Note endpoints
      • Operational Note data
    • Retrieve aircraft position
  • Release log
Powered by GitBook
On this page

Was this helpful?

  1. Authenticated Endpoints
  2. Airport endpoints

Airport data

PreviousSearching airportsNextAuthorities at an airport

Last updated 1 year ago

Was this helpful?

Get full airport data

GET https://api.aviowiki.com/airports/{aid}

Path Parameters

Name
Type
Description

aid*

String

Aviowiki ID of the airport

Headers

Name
Type
Description

Authorization

String

An API Token using Bearer authorization.

The detailed properties of the returned object can be found in the documentation of the data model.

{
	"icao": "KJFK",
	"iata": "JFK",
	"localIdentifier": "JFK",
	"name": "John F. Kennedy International ",
	"servedCity": "New York",
	"servedCityGoverningDistrict": {
		"code": "US-NY",
		"name": "New York",
		"administrativeType": "State"
	},
	"administrativeCity": null,
	"administrativeCityGoverningDistrict": null,
	"elevation": 3.96,
	"coordinates": {
		"latitude": 40.6399278,
		"longitude": -73.7786944
	},
	"variation": -13.00,
	"country": {
		"iso2": "US",
		"iso3": "USA",
		"isoNumeric": 840,
		"name": "United States",
		"officialName": "United States of America",
		"localIdentifierName": null
	},
	"timeZone": "America/New_York",
	"perimeter": null,
	"type": "AIRPORT",
	"operator": "PUBLIC",
	"accessibleFor": [
		"SCHEDULED",
		"NON_SCHEDULED",
		"GENERAL_AVIATION",
		"MILITARY",
		"BUSINESS_AVIATION"
	],
	"ifr": true,
	"nonScheduledPermission": "NONE",
	"nonScheduledPermissionNotes": null,
	"mandatoryHandling": false,
	"mandatoryQualification": false,
	"qualificationLink": null,
	"qualificationNotes": null,
	"weightLimit": 9999999.00,
	"wingspanLimit": 999.00,
	"paxLimit": 999,
	"referenceWeatherStation": null,
	"aid": "APT-KS1J-8E0L"
}
{
	"error": "The Airport identified by {AID} does not exist.",
	"timestamp": "2022-07-14T11:45:53.093205678Z",
	"status": 404,
	"message": "The Airport identified by {AID} does not exist.",
	"path": "/airports/{AID}"
}

Retrieving airport data by ICAO, IATA and local identifiers is also possible, for more information view .

Airport
Free airport endpoints