Jun
16
Mon
Southwest Airlines WN9817
5:05 AM – 7:27 AM
SIN → JFK
From AED 1006.67
Overview
flights / #309
5:05 AM – 7:27 AM
SIN → JFK
From AED 1006.67
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/309" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/309" ); 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/309"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/309"
)
flight = res.json() Response
{
"id": 309,
"flightNumber": "WN9817",
"airline": "Southwest Airlines",
"departureAirport": "SIN",
"arrivalAirport": "JFK",
"departureAt": "2025-06-16T05:05:51.810Z",
"arrivalAt": "2025-06-16T07:27:51.810Z",
"durationMinutes": 142,
"status": "boarding",
"priceFrom": 1006.67,
"currency": "AED",
"createdAt": "2025-04-19T05:05:51.810Z"
}