example-data.com

flights / #168

Oct
17
Sat

Lufthansa LH4829

12:30 AM – 6:07 AM

SYD → ORD

From EUR328.83

Component variants

curl -sS \
  "https://example-data.com/api/v1/flights/168" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/flights/168"
);
const flight = await res.json();
import type { Flight } from "https://example-data.com/types/flights.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/flights/168"
);
const flight = (await res.json()) as Flight;
import requests

res = requests.get(
    "https://example-data.com/api/v1/flights/168"
)
flight = res.json()
{
  "id": 168,
  "flightNumber": "LH4829",
  "airline": "Lufthansa",
  "departureAirport": "SYD",
  "arrivalAirport": "ORD",
  "departureAt": "2026-10-17T00:30:33.082Z",
  "arrivalAt": "2026-10-17T06:07:33.082Z",
  "durationMinutes": 337,
  "status": "scheduled",
  "priceFrom": 328.83,
  "currency": "EUR",
  "createdAt": "2026-07-22T00:30:33.082Z"
}
Draftbit