Dec
18
Fri
Air France AF9865
8:22 PM – 9:57 AM
DXB → ICN
From AED411.97
flights / #117
8:22 PM – 9:57 AM
DXB → ICN
From AED411.97
curl -sS \
"https://example-data.com/api/v1/flights/117" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/117"
);
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/117"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/117"
)
flight = res.json() {
"id": 117,
"flightNumber": "AF9865",
"airline": "Air France",
"departureAirport": "DXB",
"arrivalAirport": "ICN",
"departureAt": "2026-12-18T20:22:47.197Z",
"arrivalAt": "2026-12-19T09:57:47.197Z",
"durationMinutes": 815,
"status": "delayed",
"priceFrom": 411.97,
"currency": "AED",
"createdAt": "2026-10-19T20:22:47.197Z"
}