example-data.com

flights / #144

Apr
15
Thu

Japan Airlines JL3297

2:53 AM – 10:24 AM

ICN → DFW

From USD1873.41

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/144"
)
flight = res.json()
{
  "id": 144,
  "flightNumber": "JL3297",
  "airline": "Japan Airlines",
  "departureAirport": "ICN",
  "arrivalAirport": "DFW",
  "departureAt": "2027-04-15T02:53:22.627Z",
  "arrivalAt": "2027-04-15T10:24:22.627Z",
  "durationMinutes": 451,
  "status": "delayed",
  "priceFrom": 1873.41,
  "currency": "USD",
  "createdAt": "2027-01-28T02:53:22.627Z"
}
Draftbit