May
20
Wed
Southwest Airlines WN7095
1:06 PM – 3:27 AM
LAX → LHR
From JPY 1473.76
Overview
flights / #311
1:06 PM – 3:27 AM
LAX → LHR
From JPY 1473.76
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/311" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/311" ); 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/311"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/311"
)
flight = res.json() Response
{
"id": 311,
"flightNumber": "WN7095",
"airline": "Southwest Airlines",
"departureAirport": "LAX",
"arrivalAirport": "LHR",
"departureAt": "2026-05-20T13:06:34.203Z",
"arrivalAt": "2026-05-21T03:27:34.203Z",
"durationMinutes": 861,
"status": "delayed",
"priceFrom": 1473.76,
"currency": "JPY",
"createdAt": "2026-05-05T13:06:34.203Z"
}