example-data.com

flights / #25

Feb
21
Sat

Singapore Airlines SQ2252

6:22 AM – 9:10 AM

YYZ → DFW

From CAD984.11

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/25"
)
flight = res.json()
{
  "id": 25,
  "flightNumber": "SQ2252",
  "airline": "Singapore Airlines",
  "departureAirport": "YYZ",
  "arrivalAirport": "DFW",
  "departureAt": "2026-02-21T06:22:51.031Z",
  "arrivalAt": "2026-02-21T09:10:51.031Z",
  "durationMinutes": 168,
  "status": "in_air",
  "priceFrom": 984.11,
  "currency": "CAD",
  "createdAt": "2026-01-06T06:22:51.031Z"
}
Draftbit