/v1/meta
Usage notes
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/opensky-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/opensky-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/opensky-api/v1/meta");
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/opensky-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "Live air traffic from the OpenSky Network, a community network of ADS-B/Mode-S receivers. /v1/flights?lamin=45.8&lomin=5.9&lamax=47.8&lomax=10.5 = every aircraft currently airborne in a geographic bounding box (keep it under ~20°×30°), each with its ICAO 24-bit address, callsign, origin country, live longitude/latitude, barometric and geometric altitude, ground speed, heading, vertical rate and squawk — a real-time radar snapshot; /v1/aircraft?icao24=4b1815 = a single aircraft's current state by its 6-hex ICAO address; /v1/arrivals?airport=EDDF&hours=2 and /v1/departures?airport=EGLL&hours=2 = the flights that arrived at / departed from an airport (4-letter ICAO code) over the last N hours (1-48), with callsign, the estimated other-end airport and the first/last-seen timestamps. Positions are in degrees, altitudes & speeds in metres / metres-per-second. This is live flight tracking — distinct from aircraft registries, airline directories, airport metadata and scheduled-flight status. Data from the OpenSky Network (free for non-commercial use; please credit OpenSky). Coverage depends on volunteer receiver density.",
"source": "OpenSky Network — crowd-sourced ADS-B/Mode-S air traffic (opensky-network.org)",
"endpoints": [
"/v1/flights",
"/v1/aircraft",
"/v1/arrivals",
"/v1/departures",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-06-01T16:23:51.195Z",
"request_id": "8b18b4fa-b705-4de0-89ad-86b68e43eb53"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}