Sep
11
Thu
Lufthansa LH7043
6:42 PM – 4:16 AM
DXB → ICN
From SGD164.04
flights / #227
6:42 PM – 4:16 AM
DXB → ICN
From SGD164.04
curl -sS \
"https://example-data.com/api/v1/flights/227" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/227"
);
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/227"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/227"
)
flight = res.json() {
"id": 227,
"flightNumber": "LH7043",
"airline": "Lufthansa",
"departureAirport": "DXB",
"arrivalAirport": "ICN",
"departureAt": "2025-09-11T18:42:16.642Z",
"arrivalAt": "2025-09-12T04:16:16.642Z",
"durationMinutes": 574,
"status": "landed",
"priceFrom": 164.04,
"currency": "SGD",
"createdAt": "2025-09-04T18:42:16.642Z"
}