example-data.com

flights / #104

Jul
11
Sat

Delta Air Lines DL8139

3:57 AM – 8:50 AM

LHR → CDG

From SGD737.14

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/104"
)
flight = res.json()
{
  "id": 104,
  "flightNumber": "DL8139",
  "airline": "Delta Air Lines",
  "departureAirport": "LHR",
  "arrivalAirport": "CDG",
  "departureAt": "2026-07-11T03:57:57.227Z",
  "arrivalAt": "2026-07-11T08:50:57.227Z",
  "durationMinutes": 293,
  "status": "delayed",
  "priceFrom": 737.14,
  "currency": "SGD",
  "createdAt": "2026-07-10T03:57:57.227Z"
}
Draftbit