Apr
3
Fri
Southwest Airlines WN244
10:42 PM – 2:35 AM
MEX → ICN
From CAD901.92
flights / #71
10:42 PM – 2:35 AM
MEX → ICN
From CAD901.92
curl -sS \
"https://example-data.com/api/v1/flights/71" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/71"
);
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/71"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/71"
)
flight = res.json() {
"id": 71,
"flightNumber": "WN244",
"airline": "Southwest Airlines",
"departureAirport": "MEX",
"arrivalAirport": "ICN",
"departureAt": "2026-04-03T22:42:13.460Z",
"arrivalAt": "2026-04-04T02:35:13.460Z",
"durationMinutes": 233,
"status": "landed",
"priceFrom": 901.92,
"currency": "CAD",
"createdAt": "2026-01-31T22:42:13.460Z"
}