/v1/controllers
Online air-traffic controllers
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/vatsim-api/v1/controllers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vatsim-api/v1/controllers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vatsim-api/v1/controllers");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/vatsim-api/v1/controllers",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 100,
"airport": null,
"matched": 111,
"controllers": [
{
"cid": 1828727,
"name": "1828727",
"logon": "2026-06-01T06:53:09.9318906Z",
"rating": 3,
"callsign": "JFK_TWR",
"facility": "Tower",
"frequency": "119.100"
},
{
"cid": 1381105,
"name": "1381105",
"logon": "2026-06-01T09:33:05.1129226Z",
"rating": 3,
"callsign": "WSSS_1_TWR",
"facility": "Tower",
"frequency": "118.600"
},
{
"cid": 1904583,
"name": "Emmett B",
"logon": "2026-06-01T11:12:04.3368513Z",
"rating": 2,
"callsign": "BDL_GND",
"facility": "Ground",
"frequency": "121.900"
},
{
"cid": 1925301,
"name": "Khalil",
"logon": "2026-06-01T11:31:33.4966701Z",
"rating": 3,
"callsign": "OJAI_TWR",
"facility": "Tower",
"frequency": "119.800"
},
{
"cid": 1774241,
"name": "Weston Koenig",
"logon": "2026-06-01T11:43:22.8802799Z",
"rating": 2,
"callsign": "DEN_GND",
"facility": "Ground",
"frequency": "121.850"
},
{
"cid": 1886109,
"name": "Kyle D",
"logon": "2026-06-01T11:49:39.9181485Z",
"rating": 2,
"callsign": "BHM_GND",
"facility": "Ground",
"frequency": "121.700"
},
{
"cid": 1937846,
"name": "Mesut",
"logon": "2026-06-01T11:56:01.1935542Z",
"rating": 3,
"callsign": "LTAR_TWR",
"facility": "Tower",
"frequency": "118.800"
},
{
"cid": 1751036,
"name": "Dominic Sury",
"logon": "2026-06-01T12:07:49.9351947Z",
"rating": 2,
"callsign": "LKPR_GND",
"facility": "Ground",
"frequency": "121.910"
},
{
"cid": 859607,
"name": "Dan Bishop-Adams",
"logon": "2026-06-01T12:50:22.5887973Z",
"rating": 5,
"callsign": "EGGD_APP",
"facility": "Approach/Departure",
"frequency": "125.655"
},
{
"cid": 1780679,
"name": "Gleb Ivanov",
"logon": "2026-06-01T13:05:08.7809989Z",
"rating": 4,
…