Jul
7
Tue
British Airways BA551
2:51 AM – 9:46 AM
SYD → FRA
From CAD 631.14
Overview
flights / #274
2:51 AM – 9:46 AM
SYD → FRA
From CAD 631.14
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/274" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/274" ); 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/274"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/274"
)
flight = res.json() Response
{
"id": 274,
"flightNumber": "BA551",
"airline": "British Airways",
"departureAirport": "SYD",
"arrivalAirport": "FRA",
"departureAt": "2026-07-07T02:51:31.553Z",
"arrivalAt": "2026-07-07T09:46:31.553Z",
"durationMinutes": 415,
"status": "cancelled",
"priceFrom": 631.14,
"currency": "CAD",
"createdAt": "2026-06-08T02:51:31.553Z"
}