Oct
30
Fri
American Airlines AA4332
2:09 AM – 7:44 AM
LHR → AMS
From CAD220.95
flights / #140
2:09 AM – 7:44 AM
LHR → AMS
From CAD220.95
curl -sS \
"https://example-data.com/api/v1/flights/140" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/140"
);
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/140"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/140"
)
flight = res.json() {
"id": 140,
"flightNumber": "AA4332",
"airline": "American Airlines",
"departureAirport": "LHR",
"arrivalAirport": "AMS",
"departureAt": "2026-10-30T02:09:12.610Z",
"arrivalAt": "2026-10-30T07:44:12.610Z",
"durationMinutes": 335,
"status": "delayed",
"priceFrom": 220.95,
"currency": "CAD",
"createdAt": "2026-09-15T02:09:12.610Z"
}