example-data.com

flights / #68

Aug
6
Thu

United Airlines UA8969

7:58 PM – 10:39 PM

MAD → FCO

From USD1770.13

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/68"
)
flight = res.json()
{
  "id": 68,
  "flightNumber": "UA8969",
  "airline": "United Airlines",
  "departureAirport": "MAD",
  "arrivalAirport": "FCO",
  "departureAt": "2026-08-06T19:58:48.708Z",
  "arrivalAt": "2026-08-06T22:39:48.708Z",
  "durationMinutes": 161,
  "status": "landed",
  "priceFrom": 1770.13,
  "currency": "USD",
  "createdAt": "2026-06-14T19:58:48.708Z"
}
Draftbit