Sep
18
Thu
Southwest Airlines WN730
2:33 AM – 4:32 PM
DFW → FRA
From AUD 1367.93
Overview
flights / #247
2:33 AM – 4:32 PM
DFW → FRA
From AUD 1367.93
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/247" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/247" ); 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/247"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/247"
)
flight = res.json() Response
{
"id": 247,
"flightNumber": "WN730",
"airline": "Southwest Airlines",
"departureAirport": "DFW",
"arrivalAirport": "FRA",
"departureAt": "2025-09-18T02:33:15.428Z",
"arrivalAt": "2025-09-18T16:32:15.428Z",
"durationMinutes": 839,
"status": "in_air",
"priceFrom": 1367.93,
"currency": "AUD",
"createdAt": "2025-09-04T02:33:15.428Z"
}