example-data.com

flights / #237

Aug
28
Fri

Singapore Airlines SQ2459

7:38 AM – 8:44 PM

SYD → MAD

From AUD1771.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/237"
)
flight = res.json()
{
  "id": 237,
  "flightNumber": "SQ2459",
  "airline": "Singapore Airlines",
  "departureAirport": "SYD",
  "arrivalAirport": "MAD",
  "departureAt": "2026-08-28T07:38:43.673Z",
  "arrivalAt": "2026-08-28T20:44:43.673Z",
  "durationMinutes": 786,
  "status": "in_air",
  "priceFrom": 1771,
  "currency": "AUD",
  "createdAt": "2026-06-02T07:38:43.673Z"
}
Draftbit