Apr
5
Sun
Singapore Airlines SQ4753
6:01 AM – 8:32 AM
DXB → SYD
From GBP 1453.55
Overview
flights / #114
6:01 AM – 8:32 AM
DXB → SYD
From GBP 1453.55
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/114" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/114" ); 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/114"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/114"
)
flight = res.json() Response
{
"id": 114,
"flightNumber": "SQ4753",
"airline": "Singapore Airlines",
"departureAirport": "DXB",
"arrivalAirport": "SYD",
"departureAt": "2026-04-05T06:01:16.492Z",
"arrivalAt": "2026-04-05T08:32:16.492Z",
"durationMinutes": 151,
"status": "in_air",
"priceFrom": 1453.55,
"currency": "GBP",
"createdAt": "2026-02-13T06:01:16.492Z"
}