Aug
28
Fri
Singapore Airlines SQ2459
7:38 AM – 8:44 PM
SYD → MAD
From AUD 1771.00
Overview
flights / #237
7:38 AM – 8:44 PM
SYD → MAD
From AUD 1771.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/237" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/237" ); 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/237"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/237"
)
flight = res.json() Response
{
"id": 237,
"flightNumber": "SQ2459",
"airline": "Singapore Airlines",
"departureAirport": "SYD",
"arrivalAirport": "MAD",
"departureAt": "2026-08-28T07:38:43.673Z",
"arrivalAt": "2026-08-28T20:44:43.673Z",
"durationMinutes": 786,
"status": "in_air",
"priceFrom": 1771,
"currency": "AUD",
"createdAt": "2026-06-02T07:38:43.673Z"
}