Nov
1
Sat
Lufthansa LH8576
7:44 PM – 4:14 AM
SIN → DFW
From JPY596.07
flights / #61
7:44 PM – 4:14 AM
SIN → DFW
From JPY596.07
curl -sS \
"https://example-data.com/api/v1/flights/61" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/61"
);
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/61"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/61"
)
flight = res.json() {
"id": 61,
"flightNumber": "LH8576",
"airline": "Lufthansa",
"departureAirport": "SIN",
"arrivalAirport": "DFW",
"departureAt": "2025-11-01T19:44:00.738Z",
"arrivalAt": "2025-11-02T04:14:00.738Z",
"durationMinutes": 510,
"status": "delayed",
"priceFrom": 596.07,
"currency": "JPY",
"createdAt": "2025-10-10T19:44:00.738Z"
}