Sep
18
Thu
Japan Airlines JL2268
7:00 AM – 5:32 PM
MAD → SYD
From EUR 2025.92
Overview
flights / #123
7:00 AM – 5:32 PM
MAD → SYD
From EUR 2025.92
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/123" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/123" ); 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/123"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/123"
)
flight = res.json() Response
{
"id": 123,
"flightNumber": "JL2268",
"airline": "Japan Airlines",
"departureAirport": "MAD",
"arrivalAirport": "SYD",
"departureAt": "2025-09-18T07:00:46.959Z",
"arrivalAt": "2025-09-18T17:32:46.959Z",
"durationMinutes": 632,
"status": "landed",
"priceFrom": 2025.92,
"currency": "EUR",
"createdAt": "2025-08-21T07:00:46.959Z"
}