Aug
26
Wed
Japan Airlines JL801
10:32 AM – 6:35 PM
CDG → ICN
From CAD 1242.25
Overview
flights / #234
10:32 AM – 6:35 PM
CDG → ICN
From CAD 1242.25
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/234" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/234" ); const flight = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flights.d.ts https://example-data.com/types/flights.d.ts
import type { Flight } from "./types/flights";
const res = await fetch(
"https://example-data.com/api/v1/flights/234"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/234"
)
flight = res.json() Response
{
"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"
}