example-data.com

flights / #209

Oct
13
Tue

Singapore Airlines SQ4867

1:14 AM – 7:13 AM

ATL → DXB

From JPY684.64

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/209"
)
flight = res.json()
{
  "id": 209,
  "flightNumber": "SQ4867",
  "airline": "Singapore Airlines",
  "departureAirport": "ATL",
  "arrivalAirport": "DXB",
  "departureAt": "2026-10-13T01:14:12.342Z",
  "arrivalAt": "2026-10-13T07:13:12.342Z",
  "durationMinutes": 359,
  "status": "landed",
  "priceFrom": 684.64,
  "currency": "JPY",
  "createdAt": "2026-07-19T01:14:12.342Z"
}
Draftbit