example-data.com

flights / #205

Sep
25
Thu

Delta Air Lines DL639

11:14 PM – 1:16 PM

DFW → LHR

From GBP543.93

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/205"
)
flight = res.json()
{
  "id": 205,
  "flightNumber": "DL639",
  "airline": "Delta Air Lines",
  "departureAirport": "DFW",
  "arrivalAirport": "LHR",
  "departureAt": "2025-09-25T23:14:01.340Z",
  "arrivalAt": "2025-09-26T13:16:01.340Z",
  "durationMinutes": 842,
  "status": "landed",
  "priceFrom": 543.93,
  "currency": "GBP",
  "createdAt": "2025-08-24T23:14:01.340Z"
}
Draftbit