Mar
26
Thu
Southwest Airlines WN7824
7:28 AM – 10:18 AM
NRT → FRA
From EUR 173.52
Overview
flights / #225
7:28 AM – 10:18 AM
NRT → FRA
From EUR 173.52
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/225" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/225" ); 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/225"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/225"
)
flight = res.json() Response
{
"id": 225,
"flightNumber": "WN7824",
"airline": "Southwest Airlines",
"departureAirport": "NRT",
"arrivalAirport": "FRA",
"departureAt": "2026-03-26T07:28:37.216Z",
"arrivalAt": "2026-03-26T10:18:37.216Z",
"durationMinutes": 170,
"status": "landed",
"priceFrom": 173.52,
"currency": "EUR",
"createdAt": "2026-03-03T07:28:37.216Z"
}