Skip to content

Datafeed API (VATGER)

Nikolas Görlitz edited this page May 10, 2023 · 1 revision

The following routes are specific to VATSIM Germany in that the filter methods used only apply to ATC positions that are in Germany, or pilots flying over Germany.

/datafeed/controllers/ger

Returns all controllers of the datafeed which match the following conditions:

  • Callsign starts with "ED" or "ET"
  • Frequency not equal to "199.998"

Response:

{
    data: Array<DatafeedModelController>,
    length: number,
    failed: boolean
}

/datafeed/pilots/ger

Returns all pilots of the datafeed which match the following conditions:

  • Longitude & Latitude lie within a specified polygon roughly matching Germany

Response:

{
    data: Array<DatafeedModelPilot>,
    length: number,
    failed: boolean
}

/datafeed/atis/ger

Returns all ATIS stations of the datafeed which match the following conditions:

  • Callsign starts with "ED" or "ET"
  • Frequency not equal to "199.998"

Response:

{
    data: Array<DatafeedModelAtis>,
    length: number,
    failed: boolean
}
Clone this wiki locally