Jan
17
Sun
Southwest Airlines WN7615
7:29 PM – 9:47 AM
DXB → AMS
From USD 482.88
Overview
flights / #143
7:29 PM – 9:47 AM
DXB → AMS
From USD 482.88
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/143" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/143" ); 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/143"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/143"
)
flight = res.json() Response
{
"id": 143,
"flightNumber": "WN7615",
"airline": "Southwest Airlines",
"departureAirport": "DXB",
"arrivalAirport": "AMS",
"departureAt": "2027-01-17T19:29:54.938Z",
"arrivalAt": "2027-01-18T09:47:54.938Z",
"durationMinutes": 858,
"status": "boarding",
"priceFrom": 482.88,
"currency": "USD",
"createdAt": "2026-12-07T19:29:54.938Z"
}