example-data.com

flights / #48

May
10
Sun

United Airlines UA813

1:26 PM – 3:49 PM

LAX → LHR

From USD1440.57

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/48"
)
flight = res.json()
{
  "id": 48,
  "flightNumber": "UA813",
  "airline": "United Airlines",
  "departureAirport": "LAX",
  "arrivalAirport": "LHR",
  "departureAt": "2026-05-10T13:26:16.971Z",
  "arrivalAt": "2026-05-10T15:49:16.971Z",
  "durationMinutes": 143,
  "status": "delayed",
  "priceFrom": 1440.57,
  "currency": "USD",
  "createdAt": "2026-04-26T13:26:16.971Z"
}
Draftbit