Sep
10
Wed
Lufthansa LH4415
1:31 AM – 3:26 PM
FCO → SYD
From AED346.17
flights / #70
1:31 AM – 3:26 PM
FCO → SYD
From AED346.17
curl -sS \
"https://example-data.com/api/v1/flights/70" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/70"
);
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/70"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/70"
)
flight = res.json() {
"id": 70,
"flightNumber": "LH4415",
"airline": "Lufthansa",
"departureAirport": "FCO",
"arrivalAirport": "SYD",
"departureAt": "2025-09-10T01:31:53.656Z",
"arrivalAt": "2025-09-10T15:26:53.656Z",
"durationMinutes": 835,
"status": "scheduled",
"priceFrom": 346.17,
"currency": "AED",
"createdAt": "2025-07-26T01:31:53.656Z"
}