Sep
18
Thu
Japan Airlines JL2268
7:00 AM – 5:32 PM
MAD → SYD
From EUR2025.92
flights / #123
7:00 AM – 5:32 PM
MAD → SYD
From EUR2025.92
curl -sS \
"https://example-data.com/api/v1/flights/123" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/123"
);
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/123"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/123"
)
flight = res.json() {
"id": 123,
"flightNumber": "JL2268",
"airline": "Japan Airlines",
"departureAirport": "MAD",
"arrivalAirport": "SYD",
"departureAt": "2025-09-18T07:00:46.959Z",
"arrivalAt": "2025-09-18T17:32:46.959Z",
"durationMinutes": 632,
"status": "landed",
"priceFrom": 2025.92,
"currency": "EUR",
"createdAt": "2025-08-21T07:00:46.959Z"
}