Dec
31
Thu
Japan Airlines JL855
6:24 PM – 11:20 PM
BCN → YYZ
From USD 760.02
Overview
flights / #24
6:24 PM – 11:20 PM
BCN → YYZ
From USD 760.02
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/24" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/24" ); 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/24"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/24"
)
flight = res.json() Response
{
"id": 24,
"flightNumber": "JL855",
"airline": "Japan Airlines",
"departureAirport": "BCN",
"arrivalAirport": "YYZ",
"departureAt": "2026-12-31T18:24:06.848Z",
"arrivalAt": "2026-12-31T23:20:06.848Z",
"durationMinutes": 296,
"status": "cancelled",
"priceFrom": 760.02,
"currency": "USD",
"createdAt": "2026-12-01T18:24:06.848Z"
}