Nov
21
Fri
Southwest Airlines WN5532
10:09 PM – 11:50 AM
ORD → NRT
From GBP 2339.36
Overview
flights / #216
10:09 PM – 11:50 AM
ORD → NRT
From GBP 2339.36
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/216" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/216" ); 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/216"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/216"
)
flight = res.json() Response
{
"id": 216,
"flightNumber": "WN5532",
"airline": "Southwest Airlines",
"departureAirport": "ORD",
"arrivalAirport": "NRT",
"departureAt": "2025-11-21T22:09:06.022Z",
"arrivalAt": "2025-11-22T11:50:06.022Z",
"durationMinutes": 821,
"status": "boarding",
"priceFrom": 2339.36,
"currency": "GBP",
"createdAt": "2025-10-02T22:09:06.022Z"
}