Sep
29
Tue
Air France AF2549
12:23 PM – 6:04 PM
MAD → AMS
From AED 452.67
Overview
flights / #391
12:23 PM – 6:04 PM
MAD → AMS
From AED 452.67
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/391" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/391" ); 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/391"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/391"
)
flight = res.json() Response
{
"id": 391,
"flightNumber": "AF2549",
"airline": "Air France",
"departureAirport": "MAD",
"arrivalAirport": "AMS",
"departureAt": "2026-09-29T12:23:20.251Z",
"arrivalAt": "2026-09-29T18:04:20.251Z",
"durationMinutes": 341,
"status": "cancelled",
"priceFrom": 452.67,
"currency": "AED",
"createdAt": "2026-07-02T12:23:20.251Z"
}