May
19
Tue
Lufthansa LH1398
3:03 AM – 1:19 PM
ORD → MAD
From JPY 941.79
Overview
flights / #153
3:03 AM – 1:19 PM
ORD → MAD
From JPY 941.79
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/153" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/153" ); 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/153"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/153"
)
flight = res.json() Response
{
"id": 153,
"flightNumber": "LH1398",
"airline": "Lufthansa",
"departureAirport": "ORD",
"arrivalAirport": "MAD",
"departureAt": "2026-05-19T03:03:29.353Z",
"arrivalAt": "2026-05-19T13:19:29.353Z",
"durationMinutes": 616,
"status": "in_air",
"priceFrom": 941.79,
"currency": "JPY",
"createdAt": "2026-04-30T03:03:29.353Z"
}