Oct
21
Wed
British Airways BA4827
11:40 PM – 6:06 AM
NRT → MAD
From EUR 668.95
Overview
flights / #233
11:40 PM – 6:06 AM
NRT → MAD
From EUR 668.95
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/233" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/233" ); 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/233"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/233"
)
flight = res.json() Response
{
"id": 233,
"flightNumber": "BA4827",
"airline": "British Airways",
"departureAirport": "NRT",
"arrivalAirport": "MAD",
"departureAt": "2026-10-21T23:40:39.886Z",
"arrivalAt": "2026-10-22T06:06:39.886Z",
"durationMinutes": 386,
"status": "landed",
"priceFrom": 668.95,
"currency": "EUR",
"createdAt": "2026-08-26T23:40:39.886Z"
}