example-data.com

flights / #135

Sep
23
Tue

Singapore Airlines SQ7186

6:42 PM – 6:59 AM

DFW → ICN

From SGD1413.29

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/135"
)
flight = res.json()
{
  "id": 135,
  "flightNumber": "SQ7186",
  "airline": "Singapore Airlines",
  "departureAirport": "DFW",
  "arrivalAirport": "ICN",
  "departureAt": "2025-09-23T18:42:06.029Z",
  "arrivalAt": "2025-09-24T06:59:06.029Z",
  "durationMinutes": 737,
  "status": "scheduled",
  "priceFrom": 1413.29,
  "currency": "SGD",
  "createdAt": "2025-09-17T18:42:06.029Z"
}
Draftbit