FlightAware

Suivi de vols

Inscrivez-vous à FlightAware (Inscription gratuite) | Identifiant/Mot de passe oublié Annuler
US Flag FR Flag 


 

Suivi/Infos de l'aéroport


-ou-


 

FlightXML: Flight Tracking API

Harness FlightAware's infrastructure to build an awesome aviation app.

JavaScript/jQuery


// get aviation weather (METAR) at LAX
$.ajax({
   url: fxml_url + 'Metar',
   data: { 'airport': 'KLAX' },
   dataType: 'jsonp',
   jsonp: 'jsonp_callback',
   xhrFields: { withCredentials: true }
   });
});
      

PHP


// get details on flight SWA2558
$params = array(
  "ident" => "SWA2558",
  "howMany" => 1,
  "offset" => 0 );

$result = $client->FlightInfoEx($params);
      

Ruby


# get aircraft en route to JFK
result = client.request(:enroute) do
  soap.body = {
    :airport => 'KJFK',
    :how_many => 10,
    :filter => '',
    :offset => 0
  }
end
      

Pricing

FlightXML is exclusively usage-based with no minimum commitment. There are different classes of transactions based on the complexity of the request. The more queries that a user account makes per month, the less the per-query fee is.

Complete pricing →

Documentation

FlightXML's API can be accessed via REST or SOAP and the API can be accessed from any programming language that supports XML. We provide code examples for .NET, PHP, Perl, Java, JavaScript, Tcl, Ruby and Python.

Documentation →

Support

Free support is provided in the form of the Frequently Asked Questions (FAQ) and the discussion forum. Customers committed to a minimum of 500,000 queries a month are also entitled to free commercial support.

Visit the developer discussion forum →