Dec
19
Fri
Southwest Airlines WN568
10:29 AM – 11:57 PM
DXB → ATL
From AED 1267.24
Overview
flights / #7
10:29 AM – 11:57 PM
DXB → ATL
From AED 1267.24
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/7" ); 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/7"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/7"
)
flight = res.json() Response
{
"id": 7,
"flightNumber": "WN568",
"airline": "Southwest Airlines",
"departureAirport": "DXB",
"arrivalAirport": "ATL",
"departureAt": "2025-12-19T10:29:47.766Z",
"arrivalAt": "2025-12-19T23:57:47.766Z",
"durationMinutes": 808,
"status": "scheduled",
"priceFrom": 1267.24,
"currency": "AED",
"createdAt": "2025-11-21T10:29:47.766Z"
}