example-data.com

flights / #52

Apr
5
Sun

Delta Air Lines DL2514

12:29 PM – 10:23 PM

JFK → SIN

From USD1687.64

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/52"
)
flight = res.json()
{
  "id": 52,
  "flightNumber": "DL2514",
  "airline": "Delta Air Lines",
  "departureAirport": "JFK",
  "arrivalAirport": "SIN",
  "departureAt": "2026-04-05T12:29:08.358Z",
  "arrivalAt": "2026-04-05T22:23:08.358Z",
  "durationMinutes": 594,
  "status": "cancelled",
  "priceFrom": 1687.64,
  "currency": "USD",
  "createdAt": "2026-01-22T12:29:08.358Z"
}
Draftbit