May
19
Tue
Lufthansa LH1398
3:03 AM – 1:19 PM
ORD → MAD
From JPY941.79
flights / #153
3:03 AM – 1:19 PM
ORD → MAD
From JPY941.79
curl -sS \
"https://example-data.com/api/v1/flights/153" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/153"
);
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/153"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/153"
)
flight = res.json() {
"id": 153,
"flightNumber": "LH1398",
"airline": "Lufthansa",
"departureAirport": "ORD",
"arrivalAirport": "MAD",
"departureAt": "2026-05-19T03:03:29.353Z",
"arrivalAt": "2026-05-19T13:19:29.353Z",
"durationMinutes": 616,
"status": "in_air",
"priceFrom": 941.79,
"currency": "JPY",
"createdAt": "2026-04-30T03:03:29.353Z"
}