Apr
17
Sat
Lufthansa LH3261
9:17 PM – 11:55 PM
YYZ → ATL
From AUD494.66
flights / #3
9:17 PM – 11:55 PM
YYZ → ATL
From AUD494.66
curl -sS \
"https://example-data.com/api/v1/flights/3" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/3"
);
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/3"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/3"
)
flight = res.json() {
"id": 3,
"flightNumber": "LH3261",
"airline": "Lufthansa",
"departureAirport": "YYZ",
"arrivalAirport": "ATL",
"departureAt": "2027-04-17T21:17:22.081Z",
"arrivalAt": "2027-04-17T23:55:22.081Z",
"durationMinutes": 158,
"status": "boarding",
"priceFrom": 494.66,
"currency": "AUD",
"createdAt": "2027-01-17T21:17:22.081Z"
}