Dec
5
Sat
Japan Airlines JL6387
12:26 PM – 3:02 PM
MAD → LHR
From AUD2300.23
flights / #88
12:26 PM – 3:02 PM
MAD → LHR
From AUD2300.23
curl -sS \
"https://example-data.com/api/v1/flights/88" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/88"
);
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/88"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/88"
)
flight = res.json() {
"id": 88,
"flightNumber": "JL6387",
"airline": "Japan Airlines",
"departureAirport": "MAD",
"arrivalAirport": "LHR",
"departureAt": "2026-12-05T12:26:12.467Z",
"arrivalAt": "2026-12-05T15:02:12.467Z",
"durationMinutes": 156,
"status": "in_air",
"priceFrom": 2300.23,
"currency": "AUD",
"createdAt": "2026-09-17T12:26:12.467Z"
}