Dec
12
Sat
British Airways BA7325
5:10 AM – 5:28 PM
DFW → FCO
From CAD 1357.84
Overview
flights / #73
5:10 AM – 5:28 PM
DFW → FCO
From CAD 1357.84
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/73" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/73" ); 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/73"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/73"
)
flight = res.json() Response
{
"id": 73,
"flightNumber": "BA7325",
"airline": "British Airways",
"departureAirport": "DFW",
"arrivalAirport": "FCO",
"departureAt": "2026-12-12T05:10:15.754Z",
"arrivalAt": "2026-12-12T17:28:15.754Z",
"durationMinutes": 738,
"status": "delayed",
"priceFrom": 1357.84,
"currency": "CAD",
"createdAt": "2026-10-22T05:10:15.754Z"
}