Aug
6
Thu
Southwest Airlines WN7614
1:59 AM – 11:45 AM
ORD → SIN
From AED 1376.36
Overview
flights / #276
1:59 AM – 11:45 AM
ORD → SIN
From AED 1376.36
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/276" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/276" ); 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/276"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/276"
)
flight = res.json() Response
{
"id": 276,
"flightNumber": "WN7614",
"airline": "Southwest Airlines",
"departureAirport": "ORD",
"arrivalAirport": "SIN",
"departureAt": "2026-08-06T01:59:32.405Z",
"arrivalAt": "2026-08-06T11:45:32.405Z",
"durationMinutes": 586,
"status": "landed",
"priceFrom": 1376.36,
"currency": "AED",
"createdAt": "2026-07-11T01:59:32.405Z"
}