example-data.com

flights / #107

Apr
26
Sun

Singapore Airlines SQ1943

3:56 PM – 3:48 AM

YYZ → FRA

From SGD872.70

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/107"
)
flight = res.json()
{
  "id": 107,
  "flightNumber": "SQ1943",
  "airline": "Singapore Airlines",
  "departureAirport": "YYZ",
  "arrivalAirport": "FRA",
  "departureAt": "2026-04-26T15:56:41.443Z",
  "arrivalAt": "2026-04-27T03:48:41.443Z",
  "durationMinutes": 712,
  "status": "cancelled",
  "priceFrom": 872.7,
  "currency": "SGD",
  "createdAt": "2026-01-26T15:56:41.443Z"
}
Draftbit