example-data.com

flights / #100

Aug
21
Fri

Singapore Airlines SQ8083

10:26 PM – 3:28 AM

SIN → LHR

From AED2098.55

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/100"
)
flight = res.json()
{
  "id": 100,
  "flightNumber": "SQ8083",
  "airline": "Singapore Airlines",
  "departureAirport": "SIN",
  "arrivalAirport": "LHR",
  "departureAt": "2026-08-21T22:26:37.147Z",
  "arrivalAt": "2026-08-22T03:28:37.147Z",
  "durationMinutes": 302,
  "status": "landed",
  "priceFrom": 2098.55,
  "currency": "AED",
  "createdAt": "2026-08-14T22:26:37.147Z"
}
Draftbit