Dec
17
Thu
Southwest Airlines WN9033
9:30 PM – 3:47 AM
YYZ → FRA
From AUD 1395.73
Overview
flights / #319
9:30 PM – 3:47 AM
YYZ → FRA
From AUD 1395.73
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/319" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/319" ); 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/319"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/319"
)
flight = res.json() Response
{
"id": 319,
"flightNumber": "WN9033",
"airline": "Southwest Airlines",
"departureAirport": "YYZ",
"arrivalAirport": "FRA",
"departureAt": "2026-12-17T21:30:52.816Z",
"arrivalAt": "2026-12-18T03:47:52.816Z",
"durationMinutes": 377,
"status": "in_air",
"priceFrom": 1395.73,
"currency": "AUD",
"createdAt": "2026-11-21T21:30:52.816Z"
}