Mar
31
Tue
Japan Airlines JL808
5:16 AM – 2:59 PM
SIN → BCN
From AUD1979.43
flights / #63
5:16 AM – 2:59 PM
SIN → BCN
From AUD1979.43
curl -sS \
"https://example-data.com/api/v1/flights/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/63"
);
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/63"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/63"
)
flight = res.json() {
"id": 63,
"flightNumber": "JL808",
"airline": "Japan Airlines",
"departureAirport": "SIN",
"arrivalAirport": "BCN",
"departureAt": "2026-03-31T05:16:33.015Z",
"arrivalAt": "2026-03-31T14:59:33.015Z",
"durationMinutes": 583,
"status": "landed",
"priceFrom": 1979.43,
"currency": "AUD",
"createdAt": "2026-01-18T05:16:33.015Z"
}