Dec
15
Mon
Japan Airlines JL8958
9:55 PM – 12:02 AM
DXB → AMS
From CAD632.80
flights / #108
9:55 PM – 12:02 AM
DXB → AMS
From CAD632.80
curl -sS \
"https://example-data.com/api/v1/flights/108" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/108"
);
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/108"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/108"
)
flight = res.json() {
"id": 108,
"flightNumber": "JL8958",
"airline": "Japan Airlines",
"departureAirport": "DXB",
"arrivalAirport": "AMS",
"departureAt": "2025-12-15T21:55:03.702Z",
"arrivalAt": "2025-12-16T00:02:03.702Z",
"durationMinutes": 127,
"status": "landed",
"priceFrom": 632.8,
"currency": "CAD",
"createdAt": "2025-10-22T21:55:03.702Z"
}