example-data.com

flights / #28

Oct
14
Tue

Delta Air Lines DL719

10:26 AM – 12:37 PM

ICN → JFK

From SGD2373.48

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/28"
)
flight = res.json()
{
  "id": 28,
  "flightNumber": "DL719",
  "airline": "Delta Air Lines",
  "departureAirport": "ICN",
  "arrivalAirport": "JFK",
  "departureAt": "2025-10-14T10:26:28.937Z",
  "arrivalAt": "2025-10-14T12:37:28.937Z",
  "durationMinutes": 131,
  "status": "in_air",
  "priceFrom": 2373.48,
  "currency": "SGD",
  "createdAt": "2025-07-30T10:26:28.937Z"
}
Draftbit