Jul
4
Sat
Southwest Airlines WN1811
8:33 PM – 10:01 PM
SYD → YYZ
From AUD778.07
flights / #49
8:33 PM – 10:01 PM
SYD → YYZ
From AUD778.07
curl -sS \
"https://example-data.com/api/v1/flights/49" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/49"
);
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/49"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/49"
)
flight = res.json() {
"id": 49,
"flightNumber": "WN1811",
"airline": "Southwest Airlines",
"departureAirport": "SYD",
"arrivalAirport": "YYZ",
"departureAt": "2026-07-04T20:33:05.237Z",
"arrivalAt": "2026-07-04T22:01:05.237Z",
"durationMinutes": 88,
"status": "boarding",
"priceFrom": 778.07,
"currency": "AUD",
"createdAt": "2026-06-18T20:33:05.237Z"
}