Aug
12
Tue
Lufthansa LH5692
11:35 PM – 11:09 AM
FCO → NRT
From JPY 764.09
Overview
flights / #195
11:35 PM – 11:09 AM
FCO → NRT
From JPY 764.09
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/195" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/195" ); 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/195"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/195"
)
flight = res.json() Response
{
"id": 195,
"flightNumber": "LH5692",
"airline": "Lufthansa",
"departureAirport": "FCO",
"arrivalAirport": "NRT",
"departureAt": "2025-08-12T23:35:17.961Z",
"arrivalAt": "2025-08-13T11:09:17.961Z",
"durationMinutes": 694,
"status": "boarding",
"priceFrom": 764.09,
"currency": "JPY",
"createdAt": "2025-07-20T23:35:17.961Z"
}