example-data.com

flights / #90

Jan
13
Wed

Delta Air Lines DL6266

5:20 AM – 7:52 PM

LHR → MAD

From USD1521.19

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/90"
)
flight = res.json()
{
  "id": 90,
  "flightNumber": "DL6266",
  "airline": "Delta Air Lines",
  "departureAirport": "LHR",
  "arrivalAirport": "MAD",
  "departureAt": "2027-01-13T05:20:47.447Z",
  "arrivalAt": "2027-01-13T19:52:47.447Z",
  "durationMinutes": 872,
  "status": "landed",
  "priceFrom": 1521.19,
  "currency": "USD",
  "createdAt": "2026-11-26T05:20:47.447Z"
}
Draftbit