example-data.com

flights / #229

Oct
31
Sat

Emirates EK8513

10:19 PM – 6:25 AM

SIN → LHR

From USD1278.61

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/229"
)
flight = res.json()
{
  "id": 229,
  "flightNumber": "EK8513",
  "airline": "Emirates",
  "departureAirport": "SIN",
  "arrivalAirport": "LHR",
  "departureAt": "2026-10-31T22:19:53.569Z",
  "arrivalAt": "2026-11-01T06:25:53.569Z",
  "durationMinutes": 486,
  "status": "landed",
  "priceFrom": 1278.61,
  "currency": "USD",
  "createdAt": "2026-08-18T22:19:53.569Z"
}
Draftbit