Aug
6
Thu
American Airlines AA3885
2:55 AM – 2:06 PM
NRT → ORD
From GBP 868.12
Overview
flights / #92
2:55 AM – 2:06 PM
NRT → ORD
From GBP 868.12
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/92" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/92" ); const flight = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flights.d.ts https://example-data.com/types/flights.d.ts
import type { Flight } from "./types/flights";
const res = await fetch(
"https://example-data.com/api/v1/flights/92"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/92"
)
flight = res.json() Response
{
"id": 92,
"flightNumber": "AA3885",
"airline": "American Airlines",
"departureAirport": "NRT",
"arrivalAirport": "ORD",
"departureAt": "2026-08-06T02:55:12.511Z",
"arrivalAt": "2026-08-06T14:06:12.511Z",
"durationMinutes": 671,
"status": "boarding",
"priceFrom": 868.12,
"currency": "GBP",
"createdAt": "2026-06-03T02:55:12.511Z"
}