example-data.com

flights / #198

Dec
8
Mon

United Airlines UA7879

12:48 PM – 12:01 AM

ORD → NRT

From AUD1549.96

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/198"
)
flight = res.json()
{
  "id": 198,
  "flightNumber": "UA7879",
  "airline": "United Airlines",
  "departureAirport": "ORD",
  "arrivalAirport": "NRT",
  "departureAt": "2025-12-08T12:48:43.406Z",
  "arrivalAt": "2025-12-09T00:01:43.406Z",
  "durationMinutes": 673,
  "status": "cancelled",
  "priceFrom": 1549.96,
  "currency": "AUD",
  "createdAt": "2025-10-16T12:48:43.406Z"
}
Draftbit