Nov
27
Fri
Emirates EK452
3:04 PM – 4:05 PM
YYZ → CDG
From AUD1251.61
flights / #83
3:04 PM – 4:05 PM
YYZ → CDG
From AUD1251.61
curl -sS \
"https://example-data.com/api/v1/flights/83" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/83"
);
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/83"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/83"
)
flight = res.json() {
"id": 83,
"flightNumber": "EK452",
"airline": "Emirates",
"departureAirport": "YYZ",
"arrivalAirport": "CDG",
"departureAt": "2026-11-27T15:04:03.581Z",
"arrivalAt": "2026-11-27T16:05:03.581Z",
"durationMinutes": 61,
"status": "in_air",
"priceFrom": 1251.61,
"currency": "AUD",
"createdAt": "2026-11-16T15:04:03.581Z"
}