example-data.com

flights / #201

Jan
31
Sun

Delta Air Lines DL5184

10:56 AM – 7:08 PM

AMS → YYZ

From JPY1657.95

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/201"
)
flight = res.json()
{
  "id": 201,
  "flightNumber": "DL5184",
  "airline": "Delta Air Lines",
  "departureAirport": "AMS",
  "arrivalAirport": "YYZ",
  "departureAt": "2027-01-31T10:56:23.231Z",
  "arrivalAt": "2027-01-31T19:08:23.231Z",
  "durationMinutes": 492,
  "status": "delayed",
  "priceFrom": 1657.95,
  "currency": "JPY",
  "createdAt": "2026-12-08T10:56:23.231Z"
}
Draftbit