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
  • Get all the authorities at an airport
  • Get paged authorities at an airport

Was this helpful?

  1. Authenticated Endpoints
  2. Airport endpoints

Authorities at an airport

PreviousAirport dataNextAvailability of an airport

Last updated 1 year ago

Was this helpful?

Get all the authorities at an airport

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

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 one returned set item can be found in the documentation.

[
	{
		"type": "CUSTOMS",
		"name": "CBP General Aviation",
		"landsideArea": null,
		"airsideArea": null,
		"customsDetails": null,
		"parent": "APT-KS1J-8E0L",
		"aid": "AAU-HZK3-O7WM",
		"kind": "AIRPORT"
	},
	{
		"type": "OWNER",
		"name": "Port Authority of New York and New Jersey",
		"landsideArea": null,
		"airsideArea": null,
		"customsDetails": null,
		"parent": "APT-KS1J-8E0L",
		"aid": "AAU-VD0K-XUFQ",
		"kind": "AIRPORT"
	}
]
{
    // Response
}

Get paged authorities at an airport

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

Path Parameters

Name
Type
Description

aid*

String

Aviowiki ID of the airport

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.

Headers

Name
Type
Description

Authorization

String

An API Token using Bearer authorization.

{
	"page": {
		"number": 0,
		"size": 10,
		"totalPages": 1,
		"totalResults": 2
	},
	"content": [
		{
			"type": "CUSTOMS",
			"name": "CBP General Aviation",
			"landsideArea": null,
			"airsideArea": null,
			"customsDetails": null,
			"parent": "APT-KS1J-8E0L",
			"aid": "AAU-HZK3-O7WM",
			"kind": "AIRPORT"
		},
		{
			"type": "OWNER",
			"name": "Port Authority of New York and New Jersey",
			"landsideArea": null,
			"airsideArea": null,
			"customsDetails": null,
			"parent": "APT-KS1J-8E0L",
			"aid": "AAU-VD0K-XUFQ",
			"kind": "AIRPORT"
		}
	]
}
{
    // Response
}

The properties of the pagination can be found at Pagination. The detailed properties of one returned set item can be found in the documentation.

Airport Authority
Airport Authority