Jan
4
Mon
Singapore Airlines SQ8464
5:21 PM – 6:24 PM
SYD → SIN
From USD1973.82
flights / #5
5:21 PM – 6:24 PM
SYD → SIN
From USD1973.82
curl -sS \
"https://example-data.com/api/v1/flights/5" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/5"
);
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/5"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/5"
)
flight = res.json() {
"id": 5,
"flightNumber": "SQ8464",
"airline": "Singapore Airlines",
"departureAirport": "SYD",
"arrivalAirport": "SIN",
"departureAt": "2027-01-04T17:21:18.455Z",
"arrivalAt": "2027-01-04T18:24:18.455Z",
"durationMinutes": 63,
"status": "cancelled",
"priceFrom": 1973.82,
"currency": "USD",
"createdAt": "2026-12-09T17:21:18.455Z"
}