Aug
6
Thu
American Airlines AA3885
2:55 AM – 2:06 PM
NRT → ORD
From GBP868.12
flights / #92
2:55 AM – 2:06 PM
NRT → ORD
From GBP868.12
curl -sS \
"https://example-data.com/api/v1/flights/92" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/92"
);
const flight = await res.json();import type { Flight } from "https://example-data.com/types/flights.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/flights/92"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/92"
)
flight = res.json() {
"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"
}