Mar
16
Tue
Lufthansa LH7392
4:12 AM – 11:53 AM
YYZ → ICN
From AED 2202.78
Overview
flights / #327
4:12 AM – 11:53 AM
YYZ → ICN
From AED 2202.78
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/327" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/327" ); 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/327"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/327"
)
flight = res.json() Response
{
"id": 327,
"flightNumber": "LH7392",
"airline": "Lufthansa",
"departureAirport": "YYZ",
"arrivalAirport": "ICN",
"departureAt": "2027-03-16T04:12:13.580Z",
"arrivalAt": "2027-03-16T11:53:13.580Z",
"durationMinutes": 461,
"status": "delayed",
"priceFrom": 2202.78,
"currency": "AED",
"createdAt": "2027-03-03T04:12:13.580Z"
}