Jun
30
Tue
Japan Airlines JL3624
1:48 PM – 1:03 AM
ORD → MEX
From AUD 817.92
Overview
flights / #145
1:48 PM – 1:03 AM
ORD → MEX
From AUD 817.92
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/145" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/145" ); 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/145"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/145"
)
flight = res.json() Response
{
"id": 145,
"flightNumber": "JL3624",
"airline": "Japan Airlines",
"departureAirport": "ORD",
"arrivalAirport": "MEX",
"departureAt": "2026-06-30T13:48:46.916Z",
"arrivalAt": "2026-07-01T01:03:46.916Z",
"durationMinutes": 675,
"status": "landed",
"priceFrom": 817.92,
"currency": "AUD",
"createdAt": "2026-06-02T13:48:46.916Z"
}