Get scheduled flight arrivals for any airport via FlightAware AeroAPI, pay-per-request at $0.01.
What it does
This endpoint returns scheduled arrival flights for a specific airport, sourced from FlightAware's AeroAPI. It is part of the StableTravel platform, which provides pay-per-request access to travel data including flights, hotels, activities, transfers, and real-time flight tracking. The endpoint accepts an airport identifier (ICAO or IATA code) as a path parameter and supports optional query parameters for airline filtering, pagination via cursor, and max_pages control.
The response contains a `scheduled_arrivals` array where each entry includes flight identifiers (fa_flight_id, ident, ident_icao, ident_iata), operator info, origin/destination airport details (codes, names, cities, timezones), scheduled/estimated/actual gate and runway times, aircraft type, route distance, status, progress percentage, gate and terminal info, and baggage claim. Pagination links and page count are also returned.
Pricing is $0.01 per request, paid via MPP (Tempo method on chain 4217) or x402 protocol using USDC. No API keys or subscriptions are required — payment serves as authentication. Use `npx agentcash fetch` for automatic payment handling. The endpoint is live, confirmed by a 402 MPP challenge response.
Capabilities
Use cases
- —Building an airport arrivals display board for a travel app
- —Agent checking if a specific flight is scheduled to arrive at an airport
- —Monitoring scheduled inbound traffic for airport operations
- —Pre-trip planning to confirm arrival times at a destination airport
- —Filtering scheduled arrivals by airline for codeshare or partner analysis
Fit
Best for
- —AI agents that need real-time airport arrival schedules without API key management
- —Travel automation workflows requiring programmatic access to FlightAware data
- —Applications displaying upcoming arrivals at any airport worldwide
Not for
- —Historical arrival data (use the /history/airports/{id}/flights/arrivals endpoint instead)
- —Booking or purchasing flights (use the Amadeus flight endpoints on StableTravel)
Quick start
npx agentcash fetch "https://stabletravel.dev/api/flightaware/airports/KJFK/flights/scheduled-arrivals"Example
Response
{
"links": {
"next": null
},
"num_pages": 1,
"scheduled_arrivals": [
{
"ident": "UAL123",
"origin": {
"city": "Los Angeles",
"code": "KLAX",
"name": "Los Angeles Intl",
"code_iata": "LAX"
},
"status": "Scheduled",
"operator": "UAL",
"ident_iata": "UA123",
"ident_icao": "UAL123",
"destination": {
"city": "New York",
"code": "KJFK",
"name": "John F Kennedy Intl",
"code_iata": "JFK"
},
"fa_flight_id": "UAL123-1234567890-schedule-0001",
"scheduled_in": "2025-07-15T18:30:00Z",
"aircraft_type": "B789",
"flight_number": "123",
"operator_iata": "UA",
"route_distance": 2475
}
]
}Endpoint
Quality
Full OpenAPI 3.1 schema with detailed response types, clear pricing ($0.01/request), live 402 MPP challenge confirmed, comprehensive documentation including parameters and workflows. Only minor gap is no real example response captured from a paid call.
Citations
- —Endpoint price is $0.01 per requesthttps://stabletravel.dev/openapi.json
- —Payment via MPP Tempo method on chain 4217 or x402, using USDC, no API keys requiredhttps://stabletravel.dev/openapi.json
- —Endpoint is live, confirmed by 402 MPP challengehttps://stabletravel.dev/api/flightaware/airports/:id/flights/scheduled-arrivals
- —Data sourced from FlightAware AeroAPIhttps://stabletravel.dev
- —Accepts ICAO or IATA airport code as path parameter, optional airline and pagination query paramshttps://stabletravel.dev/openapi.json