Aug
24
Mon
Air France AF7251
8:07 AM – 4:36 PM
MAD → ATL
From GBP 886.11
Overview
flights / #53
8:07 AM – 4:36 PM
MAD → ATL
From GBP 886.11
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/53" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/53" ); 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/53"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/53"
)
flight = res.json() Response
{
"id": 53,
"flightNumber": "AF7251",
"airline": "Air France",
"departureAirport": "MAD",
"arrivalAirport": "ATL",
"departureAt": "2026-08-24T08:07:22.878Z",
"arrivalAt": "2026-08-24T16:36:22.878Z",
"durationMinutes": 509,
"status": "boarding",
"priceFrom": 886.11,
"currency": "GBP",
"createdAt": "2026-06-19T08:07:22.878Z"
}