Nov
3
Tue
Delta Air Lines DL855
4:26 PM – 6:33 PM
ICN → SYD
From SGD1932.56
flights / #79
4:26 PM – 6:33 PM
ICN → SYD
From SGD1932.56
curl -sS \
"https://example-data.com/api/v1/flights/79" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/79"
);
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/79"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/79"
)
flight = res.json() {
"id": 79,
"flightNumber": "DL855",
"airline": "Delta Air Lines",
"departureAirport": "ICN",
"arrivalAirport": "SYD",
"departureAt": "2026-11-03T16:26:31.897Z",
"arrivalAt": "2026-11-03T18:33:31.897Z",
"durationMinutes": 127,
"status": "in_air",
"priceFrom": 1932.56,
"currency": "SGD",
"createdAt": "2026-09-21T16:26:31.897Z"
}