Nov
27
Fri
Lufthansa LH2658
4:40 AM – 1:25 PM
SYD → ATL
From EUR 662.16
Overview
flights / #300
4:40 AM – 1:25 PM
SYD → ATL
From EUR 662.16
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/300" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/300" ); 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/300"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/300"
)
flight = res.json() Response
{
"id": 300,
"flightNumber": "LH2658",
"airline": "Lufthansa",
"departureAirport": "SYD",
"arrivalAirport": "ATL",
"departureAt": "2026-11-27T04:40:24.901Z",
"arrivalAt": "2026-11-27T13:25:24.901Z",
"durationMinutes": 525,
"status": "landed",
"priceFrom": 662.16,
"currency": "EUR",
"createdAt": "2026-10-02T04:40:24.901Z"
}