Oct
21
Wed
British Airways BA4827
11:40 PM – 6:06 AM
NRT → MAD
From EUR668.95
flights / #233
11:40 PM – 6:06 AM
NRT → MAD
From EUR668.95
curl -sS \
"https://example-data.com/api/v1/flights/233" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/233"
);
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/233"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/233"
)
flight = res.json() {
"id": 233,
"flightNumber": "BA4827",
"airline": "British Airways",
"departureAirport": "NRT",
"arrivalAirport": "MAD",
"departureAt": "2026-10-21T23:40:39.886Z",
"arrivalAt": "2026-10-22T06:06:39.886Z",
"durationMinutes": 386,
"status": "landed",
"priceFrom": 668.95,
"currency": "EUR",
"createdAt": "2026-08-26T23:40:39.886Z"
}