Dec
3
Wed
Southwest Airlines WN9871
4:33 AM – 5:48 PM
LAX → YYZ
From EUR 640.98
Overview
flights / #16
4:33 AM – 5:48 PM
LAX → YYZ
From EUR 640.98
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/16" ); 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/16"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/16"
)
flight = res.json() Response
{
"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"
}