example-data.com

flights / #162

Jul
28
Tue

Delta Air Lines DL4131

11:37 PM – 1:55 PM

LHR → DFW

From AUD712.71

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/162"
)
flight = res.json()
{
  "id": 162,
  "flightNumber": "DL4131",
  "airline": "Delta Air Lines",
  "departureAirport": "LHR",
  "arrivalAirport": "DFW",
  "departureAt": "2026-07-28T23:37:30.331Z",
  "arrivalAt": "2026-07-29T13:55:30.331Z",
  "durationMinutes": 858,
  "status": "delayed",
  "priceFrom": 712.71,
  "currency": "AUD",
  "createdAt": "2026-05-18T23:37:30.331Z"
}
Draftbit