example-data.com

flights / #230

Oct
29
Wed

Delta Air Lines DL9119

4:19 AM – 11:02 AM

ICN → DFW

From AED1513.33

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/230"
)
flight = res.json()
{
  "id": 230,
  "flightNumber": "DL9119",
  "airline": "Delta Air Lines",
  "departureAirport": "ICN",
  "arrivalAirport": "DFW",
  "departureAt": "2025-10-29T04:19:35.917Z",
  "arrivalAt": "2025-10-29T11:02:35.917Z",
  "durationMinutes": 403,
  "status": "landed",
  "priceFrom": 1513.33,
  "currency": "AED",
  "createdAt": "2025-08-10T04:19:35.917Z"
}
Draftbit