Apr
28
Tue
Japan Airlines JL8871
6:14 AM – 6:17 PM
CDG → YYZ
From CAD1190.24
flights / #35
6:14 AM – 6:17 PM
CDG → YYZ
From CAD1190.24
curl -sS \
"https://example-data.com/api/v1/flights/35" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/35"
);
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/35"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/35"
)
flight = res.json() {
"id": 35,
"flightNumber": "JL8871",
"airline": "Japan Airlines",
"departureAirport": "CDG",
"arrivalAirport": "YYZ",
"departureAt": "2026-04-28T06:14:01.230Z",
"arrivalAt": "2026-04-28T18:17:01.230Z",
"durationMinutes": 723,
"status": "landed",
"priceFrom": 1190.24,
"currency": "CAD",
"createdAt": "2026-03-27T06:14:01.230Z"
}