example-data.com

flights / #155

Dec
12
Sat

Singapore Airlines SQ5571

10:18 AM – 11:18 PM

BCN → DFW

From USD1891.45

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/155"
)
flight = res.json()
{
  "id": 155,
  "flightNumber": "SQ5571",
  "airline": "Singapore Airlines",
  "departureAirport": "BCN",
  "arrivalAirport": "DFW",
  "departureAt": "2026-12-12T10:18:45.904Z",
  "arrivalAt": "2026-12-12T23:18:45.904Z",
  "durationMinutes": 780,
  "status": "landed",
  "priceFrom": 1891.45,
  "currency": "USD",
  "createdAt": "2026-09-30T10:18:45.904Z"
}
Draftbit