Oct
7
Wed
Emirates EK149
4:33 PM – 10:23 PM
DXB → ICN
From EUR2230.50
flights / #84
4:33 PM – 10:23 PM
DXB → ICN
From EUR2230.50
curl -sS \
"https://example-data.com/api/v1/flights/84" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/84"
);
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/84"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/84"
)
flight = res.json() {
"id": 84,
"flightNumber": "EK149",
"airline": "Emirates",
"departureAirport": "DXB",
"arrivalAirport": "ICN",
"departureAt": "2026-10-07T16:33:57.240Z",
"arrivalAt": "2026-10-07T22:23:57.240Z",
"durationMinutes": 350,
"status": "landed",
"priceFrom": 2230.5,
"currency": "EUR",
"createdAt": "2026-07-13T16:33:57.240Z"
}