Sep
7
Mon
Emirates EK8608
11:36 PM – 7:57 AM
ICN → AMS
From SGD139.64
flights / #64
11:36 PM – 7:57 AM
ICN → AMS
From SGD139.64
curl -sS \
"https://example-data.com/api/v1/flights/64" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/64"
);
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/64"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/64"
)
flight = res.json() {
"id": 64,
"flightNumber": "EK8608",
"airline": "Emirates",
"departureAirport": "ICN",
"arrivalAirport": "AMS",
"departureAt": "2026-09-07T23:36:13.075Z",
"arrivalAt": "2026-09-08T07:57:13.075Z",
"durationMinutes": 501,
"status": "scheduled",
"priceFrom": 139.64,
"currency": "SGD",
"createdAt": "2026-07-24T23:36:13.075Z"
}