example-data.com

flights / #194

Mar
6
Fri

Singapore Airlines SQ4845

12:44 PM – 5:27 PM

NRT → FRA

From EUR253.51

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/194"
)
flight = res.json()
{
  "id": 194,
  "flightNumber": "SQ4845",
  "airline": "Singapore Airlines",
  "departureAirport": "NRT",
  "arrivalAirport": "FRA",
  "departureAt": "2026-03-06T12:44:09.924Z",
  "arrivalAt": "2026-03-06T17:27:09.924Z",
  "durationMinutes": 283,
  "status": "landed",
  "priceFrom": 253.51,
  "currency": "EUR",
  "createdAt": "2026-02-18T12:44:09.924Z"
}
Draftbit