Jul
20
Sun
Air France AF7856
4:56 AM – 7:12 AM
ORD → ATL
From AUD 794.70
Overview
flights / #248
4:56 AM – 7:12 AM
ORD → ATL
From AUD 794.70
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/248" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/248" ); 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/248"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/248"
)
flight = res.json() Response
{
"id": 248,
"flightNumber": "AF7856",
"airline": "Air France",
"departureAirport": "ORD",
"arrivalAirport": "ATL",
"departureAt": "2025-07-20T04:56:09.217Z",
"arrivalAt": "2025-07-20T07:12:09.217Z",
"durationMinutes": 136,
"status": "cancelled",
"priceFrom": 794.7,
"currency": "AUD",
"createdAt": "2025-07-18T04:56:09.217Z"
}