Oct
10
Sat
Emirates EK2529
7:08 PM – 8:38 AM
ICN → CDG
From AED186.39
flights / #221
7:08 PM – 8:38 AM
ICN → CDG
From AED186.39
curl -sS \
"https://example-data.com/api/v1/flights/221" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/221"
);
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/221"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/221"
)
flight = res.json() {
"id": 221,
"flightNumber": "EK2529",
"airline": "Emirates",
"departureAirport": "ICN",
"arrivalAirport": "CDG",
"departureAt": "2026-10-10T19:08:34.492Z",
"arrivalAt": "2026-10-11T08:38:34.492Z",
"durationMinutes": 810,
"status": "cancelled",
"priceFrom": 186.39,
"currency": "AED",
"createdAt": "2026-09-01T19:08:34.492Z"
}