example-data.com

flights / #187

Nov
13
Fri

Lufthansa LH4932

7:35 PM – 8:38 PM

LAX → NRT

From EUR332.01

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/187"
)
flight = res.json()
{
  "id": 187,
  "flightNumber": "LH4932",
  "airline": "Lufthansa",
  "departureAirport": "LAX",
  "arrivalAirport": "NRT",
  "departureAt": "2026-11-13T19:35:47.855Z",
  "arrivalAt": "2026-11-13T20:38:47.855Z",
  "durationMinutes": 63,
  "status": "landed",
  "priceFrom": 332.01,
  "currency": "EUR",
  "createdAt": "2026-11-02T19:35:47.855Z"
}
Draftbit