example-data.com

flights / #114

Apr
5
Sun

Singapore Airlines SQ4753

6:01 AM – 8:32 AM

DXB → SYD

From GBP1453.55

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/114"
)
flight = res.json()
{
  "id": 114,
  "flightNumber": "SQ4753",
  "airline": "Singapore Airlines",
  "departureAirport": "DXB",
  "arrivalAirport": "SYD",
  "departureAt": "2026-04-05T06:01:16.492Z",
  "arrivalAt": "2026-04-05T08:32:16.492Z",
  "durationMinutes": 151,
  "status": "in_air",
  "priceFrom": 1453.55,
  "currency": "GBP",
  "createdAt": "2026-02-13T06:01:16.492Z"
}
Draftbit