example-data.com

flights / #195

Aug
12
Tue

Lufthansa LH5692

11:35 PM – 11:09 AM

FCO → NRT

From JPY764.09

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/195"
)
flight = res.json()
{
  "id": 195,
  "flightNumber": "LH5692",
  "airline": "Lufthansa",
  "departureAirport": "FCO",
  "arrivalAirport": "NRT",
  "departureAt": "2025-08-12T23:35:17.961Z",
  "arrivalAt": "2025-08-13T11:09:17.961Z",
  "durationMinutes": 694,
  "status": "boarding",
  "priceFrom": 764.09,
  "currency": "JPY",
  "createdAt": "2025-07-20T23:35:17.961Z"
}
Draftbit