example-data.com

flights / #172

Jan
26
Mon

British Airways BA4856

4:31 AM – 8:50 AM

DFW → ATL

From SGD1658.58

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/172"
)
flight = res.json()
{
  "id": 172,
  "flightNumber": "BA4856",
  "airline": "British Airways",
  "departureAirport": "DFW",
  "arrivalAirport": "ATL",
  "departureAt": "2026-01-26T04:31:17.015Z",
  "arrivalAt": "2026-01-26T08:50:17.015Z",
  "durationMinutes": 259,
  "status": "landed",
  "priceFrom": 1658.58,
  "currency": "SGD",
  "createdAt": "2026-01-13T04:31:17.015Z"
}
Draftbit