Feb
9
Mon
Lufthansa LH1937
4:26 PM – 5:38 AM
MEX → AMS
From EUR1953.86
flights / #136
4:26 PM – 5:38 AM
MEX → AMS
From EUR1953.86
curl -sS \
"https://example-data.com/api/v1/flights/136" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/136"
);
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/136"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/136"
)
flight = res.json() {
"id": 136,
"flightNumber": "LH1937",
"airline": "Lufthansa",
"departureAirport": "MEX",
"arrivalAirport": "AMS",
"departureAt": "2026-02-09T16:26:24.569Z",
"arrivalAt": "2026-02-10T05:38:24.569Z",
"durationMinutes": 792,
"status": "delayed",
"priceFrom": 1953.86,
"currency": "EUR",
"createdAt": "2026-02-07T16:26:24.569Z"
}