Jun
30
Tue
Japan Airlines JL3624
1:48 PM – 1:03 AM
ORD → MEX
From AUD817.92
flights / #145
1:48 PM – 1:03 AM
ORD → MEX
From AUD817.92
curl -sS \
"https://example-data.com/api/v1/flights/145" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/145"
);
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/145"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/145"
)
flight = res.json() {
"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"
}