example-data.com

flights / #197

Nov
8
Sat

Lufthansa LH1827

5:20 AM – 4:38 PM

SYD → SIN

From SGD1151.64

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/197"
)
flight = res.json()
{
  "id": 197,
  "flightNumber": "LH1827",
  "airline": "Lufthansa",
  "departureAirport": "SYD",
  "arrivalAirport": "SIN",
  "departureAt": "2025-11-08T05:20:47.745Z",
  "arrivalAt": "2025-11-08T16:38:47.745Z",
  "durationMinutes": 678,
  "status": "in_air",
  "priceFrom": 1151.64,
  "currency": "SGD",
  "createdAt": "2025-08-31T05:20:47.745Z"
}
Draftbit