example-data.com

flights / #37

May
5
Tue

Southwest Airlines WN7238

10:49 AM – 6:21 PM

YYZ → ICN

From SGD1808.78

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/37"
)
flight = res.json()
{
  "id": 37,
  "flightNumber": "WN7238",
  "airline": "Southwest Airlines",
  "departureAirport": "YYZ",
  "arrivalAirport": "ICN",
  "departureAt": "2026-05-05T10:49:50.801Z",
  "arrivalAt": "2026-05-05T18:21:50.801Z",
  "durationMinutes": 452,
  "status": "boarding",
  "priceFrom": 1808.78,
  "currency": "SGD",
  "createdAt": "2026-03-16T10:49:50.801Z"
}
Draftbit