Apr
28
Tue
Japan Airlines JL8871
6:14 AM – 6:17 PM
CDG → YYZ
From CAD 1190.24
Overview
flights / #35
6:14 AM – 6:17 PM
CDG → YYZ
From CAD 1190.24
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/35" ); 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/35"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/35"
)
flight = res.json() Response
{
"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"
}