Dec
3
Wed
Southwest Airlines WN9871
4:33 AM – 5:48 PM
LAX → YYZ
From EUR640.98
flights / #16
4:33 AM – 5:48 PM
LAX → YYZ
From EUR640.98
curl -sS \
"https://example-data.com/api/v1/flights/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/16"
);
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/16"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/16"
)
flight = res.json() {
"id": 16,
"flightNumber": "WN9871",
"airline": "Southwest Airlines",
"departureAirport": "LAX",
"arrivalAirport": "YYZ",
"departureAt": "2025-12-03T04:33:41.970Z",
"arrivalAt": "2025-12-03T17:48:41.970Z",
"durationMinutes": 795,
"status": "boarding",
"priceFrom": 640.98,
"currency": "EUR",
"createdAt": "2025-11-03T04:33:41.970Z"
}