example-data.com

flights / #110

Feb
9
Mon

United Airlines UA8479

7:30 AM – 9:34 PM

DFW → SYD

From AED1390.57

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/110"
)
flight = res.json()
{
  "id": 110,
  "flightNumber": "UA8479",
  "airline": "United Airlines",
  "departureAirport": "DFW",
  "arrivalAirport": "SYD",
  "departureAt": "2026-02-09T07:30:07.767Z",
  "arrivalAt": "2026-02-09T21:34:07.767Z",
  "durationMinutes": 844,
  "status": "cancelled",
  "priceFrom": 1390.57,
  "currency": "AED",
  "createdAt": "2025-12-02T07:30:07.767Z"
}
Draftbit