fairdigital / flightstats-api
PHP client for the FlightStats API
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 1 498
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 6
Open Issues: 0
Requires
- php: >=7.0
- guzzlehttp/guzzle: ~6.0
- symfony/options-resolver: ^3.3
- tightenco/collect: ^5.6
README
PHP client for the FlightStats API.
Installation
Use Composer to install this package:
composer require fairdigital/flightstats-api
Usage
Create a new FairDigital\FlightStatsApi\FlexClient
and use that to make requests to the FlightStats API:
$client = new FairDigital\FlightStatsApi\FlexClient([ 'appId' => 'yourAppId', 'appKey' => 'yourAppKey', ]); // Get information about flight AA100 departing on September 5th: $response = $client->schedules()->getFlightByDepartureDate( 'AA', 100 new DateTime('2017-09-05') );
Available APIs
The following FlightStats APIs are currently available:
Flight Status API
Flight Status API documentation
getFlightStatusById
Get the flight status from a flight associated with provided Flight ID.
$client->flightStatus()->getFlightStatusById(123456, [ // Optional query parameters 'extendedOptions' => [ 'includeDeltas', ], ]);
getFlightStatusByArrivalDate
Get the flight status from a flight that's arriving on the given date.
$client->flightStatus()->getFlightStatusByArrivalDate('AA', 100, new DateTime('2017-09-05'), [ // Optional query parameters 'utc' => true, 'extendedOptions' => [ 'includeDeltas', ], ]);
getFlightStatusByDepartureDate
Get the flight status from a flight that's departing on the given date.
$client->flightStatus()->getFlightStatusByDepartureDate('AA', 100, new DateTime('2017-09-05'), [ // Optional query parameters 'utc' => true, 'extendedOptions' => [ 'includeDeltas', ], ]);
Schedules API
getFlightByArrivalDate
$client->schedules()->getFlightByArrivalDate('AA', 100, new DateTime('2017-09-05'), [ // Optional query parameters 'extendedOptions' => [ 'includeDeltas', ], ]);
getFlightByDepartureDate
$client->schedules()->getFlightByDepartureDate('AA', 100, new DateTime('2017-09-05'), [ // Optional query parameters 'extendedOptions' => [ 'includeDeltas', ], ]);
Note
Copyright of the name FlightStats and its API belong to FlightStats.