Feb
17
Tue
Southwest Airlines WN1660
7:51 PM – 9:54 AM
LHR → MEX
From GBP 759.97
Overview
flights / #72
7:51 PM – 9:54 AM
LHR → MEX
From GBP 759.97
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/72" ); 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/72"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/72"
)
flight = res.json() Response
{
"id": 72,
"flightNumber": "WN1660",
"airline": "Southwest Airlines",
"departureAirport": "LHR",
"arrivalAirport": "MEX",
"departureAt": "2026-02-17T19:51:57.263Z",
"arrivalAt": "2026-02-18T09:54:57.263Z",
"durationMinutes": 843,
"status": "in_air",
"priceFrom": 759.97,
"currency": "GBP",
"createdAt": "2025-12-15T19:51:57.263Z"
}