May
6
Wed
Singapore Airlines SQ6812
2:28 AM – 2:01 PM
SIN → NRT
From SGD2336.24
flights / #10
2:28 AM – 2:01 PM
SIN → NRT
From SGD2336.24
curl -sS \
"https://example-data.com/api/v1/flights/10" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/10"
);
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/10"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/10"
)
flight = res.json() {
"id": 10,
"flightNumber": "SQ6812",
"airline": "Singapore Airlines",
"departureAirport": "SIN",
"arrivalAirport": "NRT",
"departureAt": "2026-05-06T02:28:47.230Z",
"arrivalAt": "2026-05-06T14:01:47.230Z",
"durationMinutes": 693,
"status": "landed",
"priceFrom": 2336.24,
"currency": "SGD",
"createdAt": "2026-02-27T02:28:47.230Z"
}