Jun
8
Sun
Southwest Airlines WN6264
4:33 AM – 3:38 PM
ICN → MAD
From AUD 1348.90
Overview
flights / #278
4:33 AM – 3:38 PM
ICN → MAD
From AUD 1348.90
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/278" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/278" ); 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/278"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/278"
)
flight = res.json() Response
{
"id": 278,
"flightNumber": "WN6264",
"airline": "Southwest Airlines",
"departureAirport": "ICN",
"arrivalAirport": "MAD",
"departureAt": "2025-06-08T04:33:14.027Z",
"arrivalAt": "2025-06-08T15:38:14.027Z",
"durationMinutes": 665,
"status": "landed",
"priceFrom": 1348.9,
"currency": "AUD",
"createdAt": "2025-03-29T04:33:14.027Z"
}