example-data.com

flights / #122

Sep
17
Wed

Delta Air Lines DL5390

1:02 AM – 7:49 AM

JFK → DFW

From JPY1491.40

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/122"
)
flight = res.json()
{
  "id": 122,
  "flightNumber": "DL5390",
  "airline": "Delta Air Lines",
  "departureAirport": "JFK",
  "arrivalAirport": "DFW",
  "departureAt": "2025-09-17T01:02:36.285Z",
  "arrivalAt": "2025-09-17T07:49:36.285Z",
  "durationMinutes": 407,
  "status": "in_air",
  "priceFrom": 1491.4,
  "currency": "JPY",
  "createdAt": "2025-09-11T01:02:36.285Z"
}
Draftbit