Aug
25
Tue
Lufthansa LH1395
5:41 AM – 6:27 PM
CDG → SYD
From AUD1170.56
flights / #148
5:41 AM – 6:27 PM
CDG → SYD
From AUD1170.56
curl -sS \
"https://example-data.com/api/v1/flights/148" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/148"
);
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/148"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/148"
)
flight = res.json() {
"id": 148,
"flightNumber": "LH1395",
"airline": "Lufthansa",
"departureAirport": "CDG",
"arrivalAirport": "SYD",
"departureAt": "2026-08-25T05:41:53.876Z",
"arrivalAt": "2026-08-25T18:27:53.876Z",
"durationMinutes": 766,
"status": "boarding",
"priceFrom": 1170.56,
"currency": "AUD",
"createdAt": "2026-07-12T05:41:53.876Z"
}