example-data.com

flights / #146

Dec
23
Wed

Singapore Airlines SQ9393

12:43 PM – 10:53 PM

FRA → NRT

From JPY273.92

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/146"
)
flight = res.json()
{
  "id": 146,
  "flightNumber": "SQ9393",
  "airline": "Singapore Airlines",
  "departureAirport": "FRA",
  "arrivalAirport": "NRT",
  "departureAt": "2026-12-23T12:43:09.363Z",
  "arrivalAt": "2026-12-23T22:53:09.363Z",
  "durationMinutes": 610,
  "status": "scheduled",
  "priceFrom": 273.92,
  "currency": "JPY",
  "createdAt": "2026-10-06T12:43:09.363Z"
}
Draftbit