Apr
3
Fri
Southwest Airlines WN244
10:42 PM – 2:35 AM
MEX → ICN
From CAD 901.92
Overview
flights / #71
10:42 PM – 2:35 AM
MEX → ICN
From CAD 901.92
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/71" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/71" ); 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/71"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/71"
)
flight = res.json() Response
{
"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"
}