Nov
11
Wed
Southwest Airlines WN1867
6:03 PM – 6:26 AM
DXB → FRA
From USD 2043.85
Overview
flights / #322
6:03 PM – 6:26 AM
DXB → FRA
From USD 2043.85
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/322" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/322" ); 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/322"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/322"
)
flight = res.json() Response
{
"id": 322,
"flightNumber": "WN1867",
"airline": "Southwest Airlines",
"departureAirport": "DXB",
"arrivalAirport": "FRA",
"departureAt": "2026-11-11T18:03:35.857Z",
"arrivalAt": "2026-11-12T06:26:35.857Z",
"durationMinutes": 743,
"status": "boarding",
"priceFrom": 2043.85,
"currency": "USD",
"createdAt": "2026-08-21T18:03:35.857Z"
}