Dec
5
Sat
Lufthansa LH3513
4:11 AM – 6:11 PM
ICN → ORD
From CAD705.01
flights / #200
4:11 AM – 6:11 PM
ICN → ORD
From CAD705.01
curl -sS \
"https://example-data.com/api/v1/flights/200" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/200"
);
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/200"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/200"
)
flight = res.json() {
"id": 200,
"flightNumber": "LH3513",
"airline": "Lufthansa",
"departureAirport": "ICN",
"arrivalAirport": "ORD",
"departureAt": "2026-12-05T04:11:17.169Z",
"arrivalAt": "2026-12-05T18:11:17.169Z",
"durationMinutes": 840,
"status": "scheduled",
"priceFrom": 705.01,
"currency": "CAD",
"createdAt": "2026-09-17T04:11:17.169Z"
}