example-data.com

flights / #73

Dec
12
Sat

British Airways BA7325

5:10 AM – 5:28 PM

DFW → FCO

From CAD1357.84

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/73"
)
flight = res.json()
{
  "id": 73,
  "flightNumber": "BA7325",
  "airline": "British Airways",
  "departureAirport": "DFW",
  "arrivalAirport": "FCO",
  "departureAt": "2026-12-12T05:10:15.754Z",
  "arrivalAt": "2026-12-12T17:28:15.754Z",
  "durationMinutes": 738,
  "status": "delayed",
  "priceFrom": 1357.84,
  "currency": "CAD",
  "createdAt": "2026-10-22T05:10:15.754Z"
}
Draftbit