Dec
31
Thu
American Airlines AA5383
6:40 PM – 10:28 PM
LHR → DXB
From EUR937.11
flights / #163
6:40 PM – 10:28 PM
LHR → DXB
From EUR937.11
curl -sS \
"https://example-data.com/api/v1/flights/163" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/163"
);
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/163"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/163"
)
flight = res.json() {
"id": 163,
"flightNumber": "AA5383",
"airline": "American Airlines",
"departureAirport": "LHR",
"arrivalAirport": "DXB",
"departureAt": "2026-12-31T18:40:07.923Z",
"arrivalAt": "2026-12-31T22:28:07.923Z",
"durationMinutes": 228,
"status": "boarding",
"priceFrom": 937.11,
"currency": "EUR",
"createdAt": "2026-12-17T18:40:07.923Z"
}