Aug
26
Wed
Japan Airlines JL801
10:32 AM – 6:35 PM
CDG → ICN
From CAD1242.25
flights / #234
10:32 AM – 6:35 PM
CDG → ICN
From CAD1242.25
curl -sS \
"https://example-data.com/api/v1/flights/234" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/234"
);
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/234"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/234"
)
flight = res.json() {
"id": 234,
"flightNumber": "JL801",
"airline": "Japan Airlines",
"departureAirport": "CDG",
"arrivalAirport": "ICN",
"departureAt": "2026-08-26T10:32:36.234Z",
"arrivalAt": "2026-08-26T18:35:36.234Z",
"durationMinutes": 483,
"status": "cancelled",
"priceFrom": 1242.25,
"currency": "CAD",
"createdAt": "2026-08-24T10:32:36.234Z"
}