Dec
30
Tue
Air France AF5684
6:50 PM – 3:29 AM
FRA → MAD
From CAD 634.34
Overview
flights / #169
6:50 PM – 3:29 AM
FRA → MAD
From CAD 634.34
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/169" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/169" ); const flight = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flights.d.ts https://example-data.com/types/flights.d.ts
import type { Flight } from "./types/flights";
const res = await fetch(
"https://example-data.com/api/v1/flights/169"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/169"
)
flight = res.json() Response
{
"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"
}