Dec
30
Tue
Air France AF5684
6:50 PM – 3:29 AM
FRA → MAD
From CAD634.34
flights / #169
6:50 PM – 3:29 AM
FRA → MAD
From CAD634.34
curl -sS \
"https://example-data.com/api/v1/flights/169" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/169"
);
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/169"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/169"
)
flight = res.json() {
"id": 169,
"flightNumber": "AF5684",
"airline": "Air France",
"departureAirport": "FRA",
"arrivalAirport": "MAD",
"departureAt": "2025-12-30T18:50:40.204Z",
"arrivalAt": "2025-12-31T03:29:40.204Z",
"durationMinutes": 519,
"status": "cancelled",
"priceFrom": 634.34,
"currency": "CAD",
"createdAt": "2025-11-27T18:50:40.204Z"
}