example-data.com

flights / #129

Jun
5
Fri

Lufthansa LH6756

2:29 PM – 9:33 PM

LAX → YYZ

From USD955.56

Component variants

curl -sS \
  "https://example-data.com/api/v1/flights/129" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/flights/129"
);
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/129"
);
const flight = (await res.json()) as Flight;
import requests

res = requests.get(
    "https://example-data.com/api/v1/flights/129"
)
flight = res.json()
{
  "id": 129,
  "flightNumber": "LH6756",
  "airline": "Lufthansa",
  "departureAirport": "LAX",
  "arrivalAirport": "YYZ",
  "departureAt": "2026-06-05T14:29:35.208Z",
  "arrivalAt": "2026-06-05T21:33:35.208Z",
  "durationMinutes": 424,
  "status": "landed",
  "priceFrom": 955.56,
  "currency": "USD",
  "createdAt": "2026-04-28T14:29:35.208Z"
}
Draftbit