example-data.com

flights / #206

Aug
31
Sun

Lufthansa LH8576

12:11 AM – 11:59 AM

AMS → CDG

From CAD757.96

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/206"
)
flight = res.json()
{
  "id": 206,
  "flightNumber": "LH8576",
  "airline": "Lufthansa",
  "departureAirport": "AMS",
  "arrivalAirport": "CDG",
  "departureAt": "2025-08-31T00:11:35.375Z",
  "arrivalAt": "2025-08-31T11:59:35.375Z",
  "durationMinutes": 708,
  "status": "in_air",
  "priceFrom": 757.96,
  "currency": "CAD",
  "createdAt": "2025-08-28T00:11:35.375Z"
}
Draftbit