Aug
10
Mon
Southwest Airlines WN9951
2:31 PM – 7:39 PM
LAX → GRU
From JPY 837.43
Overview
flights / #50
2:31 PM – 7:39 PM
LAX → GRU
From JPY 837.43
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/50" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/50" ); 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/50"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/50"
)
flight = res.json() Response
{
"id": 50,
"flightNumber": "WN9951",
"airline": "Southwest Airlines",
"departureAirport": "LAX",
"arrivalAirport": "GRU",
"departureAt": "2026-08-10T14:31:15.780Z",
"arrivalAt": "2026-08-10T19:39:15.780Z",
"durationMinutes": 308,
"status": "in_air",
"priceFrom": 837.43,
"currency": "JPY",
"createdAt": "2026-06-01T14:31:15.780Z"
}