GET /airports/:id/arrivals(.:format)
Overview
Returns an array of flights arriving at the specified airport. The id can be either the FlightCaster id, the 3 character IATA id, or the 4 character ICAO id of the airport.
Limited to 30 results by default. The page parameter can be used scroll through the results.
Parameters
pageUsed to page through the results.per_pageThe number of results per page. Defaults to 30.
Examples Requests
- /airports/PDX/arrivals.xml
- /airports/12998/arrivals.xml
- /airports/KPDX/arrivals.xml?page=2
Example Response
<?xml version="1.0" encoding="utf-8"?>
<flights current-page="1" total-entries="1517" total-pages="759">
<flight>
<id>12552358</id>
<flightstats-history-id>173007285</flightstats-history-id>
<number>218</number>
<airline-icao-id>NWA</airline-icao-id>
<origin-icao-id>PHNL</origin-icao-id>
<destination-icao-id>KPDX</destination-icao-id>
<diverted-icao-id/>
<published-arrival-time>2009-10-12 13:32:00 UTC</published-arrival-time>
<published-departure-time>2009-10-12 08:00:00 UTC</published-departure-time>
<created-at>2009-10-08 08:15:53 UTC</created-at>
<updated-at>2009-10-08 08:30:52 UTC</updated-at>
<predictions status="on-time">
<prediction greater-than="0" less-or-equal-than="20" message="On-Time">0.85495341</prediction>
<prediction greater-than="20" less-or-equal-than="60" message="Less than 60m late">0.108263855</prediction>
<prediction greater-than="60" message="More than 60m late">0.0367827363</prediction>
</predictions>
</flight>
<flight>
<id>12575962</id>
<flightstats-history-id>173030893</flightstats-history-id>
<number>2175</number>
<airline-icao-id>QXE</airline-icao-id>
<origin-icao-id>KSEA</origin-icao-id>
<destination-icao-id>KPDX</destination-icao-id>
<diverted-icao-id/>
<published-arrival-time>2009-10-12 06:44:00 UTC</published-arrival-time>
<published-departure-time>2009-10-12 06:00:00 UTC</published-departure-time>
<created-at>2009-10-08 08:22:34 UTC</created-at>
<updated-at>2009-10-08 08:31:02 UTC</updated-at>
<predictions status="on-time">
<prediction greater-than="0" less-or-equal-than="20" message="On-Time">0.85495341</prediction>
<prediction greater-than="20" less-or-equal-than="60" message="Less than 60m late">0.108263855</prediction>
<prediction greater-than="60" message="More than 60m late">0.0367827363</prediction>
</predictions>
</flight>
</flights>
