/v1/flights
Live aircraft in a bounding box
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/flights" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/opensky-api/v1/flights", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/opensky-api/v1/flights");
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/flights",
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": {
"bbox": {
"lamax": 47.8,
"lamin": 45.8,
"lomax": 10.5,
"lomin": 5.9
},
"count": 100,
"flights": [
{
"icao24": "39de58",
"squawk": "5734",
"callsign": "TVF34TB",
"latitude": 46.1051,
"longitude": 7.9468,
"on_ground": false,
"heading_deg": 295.99,
"velocity_ms": 205.46,
"last_contact": "2026-06-01T16:23:44.000Z",
"geo_altitude_m": 11986.26,
"origin_country": "France",
"baro_altitude_m": 11574.78,
"vertical_rate_ms": 0
},
{
"icao24": "39de50",
"squawk": "1000",
"callsign": "TVF43LZ",
"latitude": 47.6959,
"longitude": 7.3242,
"on_ground": false,
"heading_deg": 149.65,
"velocity_ms": 254.55,
"last_contact": "2026-06-01T16:23:44.000Z",
"geo_altitude_m": 11689.08,
"origin_country": "France",
"baro_altitude_m": 11285.22,
"vertical_rate_ms": 0
},
{
"icao24": "47b217",
"squawk": "2774",
"callsign": "IGO56K",
"latitude": 46.5719,
"longitude": 9.863,
"on_ground": false,
"heading_deg": 301.62,
"velocity_ms": 224.73,
"last_contact": "2026-06-01T16:23:44.000Z",
"geo_altitude_m": 11978.64,
"origin_country": "Norway",
"baro_altitude_m": 11582.4,
"vertical_rate_ms": -0.33
},
{
"icao24": "3c5ef6",
"squawk": "0634",
"callsign": "EWG2HA",
"latitude": 46.807,
"longitude": 6.7812,
"on_ground": false,
"heading_deg": 219.29,
"velocity_ms": 226.66,
"last_contact": "2026-06-01T16:23:44.000Z",
"geo_altitude_m": 12298.68,
"origin_country": "Germany",
"baro_altitude_m": 11879.58,
"vertical_rate_ms": 0.33
},
{
"icao24": "471f6a",
"squawk": "3102",
"callsign": "WZZ7UU",
"latitude": 46.5273,
"longitude": 6.1008,
"on_ground": false,
"heading_deg": 231.46,
"velocity_ms": 226.25,
"last_contact": "2026-06-01T16:23:44.000Z",
"geo_altitude_m": 11087.1,
"origin_country": "Hungary",
"baro_altitude_m": 10668,
"vertical_rate_ms": 0
},
{
…