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
    • 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
    • Retrieve aircraft position
  • Release log
Powered by GitBook
On this page

Was this helpful?

  1. Authenticated Endpoints
  2. Provider endpoints

Availability of a provider

PreviousProvider dataNextCountry of a provider

Last updated 3 months ago

Was this helpful?

Get 24 hours of Provider availability information starting from specified date and time.

GET https://api.aviowiki.com/providers/{aid}/availability

Path Parameters

Name
Type
Description

aid*

String

Aviowiki ID of the provider

Query Parameters

Name
Type
Description

dateTime

String

Range start for the availability retrieval. Default value: now. Datetime format: ISO 8601.

local

String

Whether to use local time or UTC. If true the dateTime query parameter shall be provided in local time as well. Default value: false

Headers

Name
Type
Description

Authorization

String

An API Token using Bearer authorization.

The detailed properties of the returned item can be found in the documentation.

[
  {
    "validFrom": "2025-02-27T10:17:40.108Z",
    "validTo": "2025-02-27T10:17:40.108Z",
    "status": "FULL",
    "notes": "string",
    "info": {}
  }
]

{
	"error": "The com.aviowiki.dao.Provider identified by the AID {AID} does not exist in the system",
	"timestamp": "2022-07-26T16:23:01.474034802Z",
	"status": 404,
	"message": "The com.aviowiki.dao.Provider identified by the AID {AID} does not exist in the system",
	"path": "/providers/{AID}/availability"
}

Provider