Jul
19
Sun
Singapore Airlines SQ9655
9:15 PM – 8:28 AM
LHR → DXB
From USD2344.33
flights / #159
9:15 PM – 8:28 AM
LHR → DXB
From USD2344.33
curl -sS \
"https://example-data.com/api/v1/flights/159" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/159"
);
const flight = await res.json();import type { Flight } from "https://example-data.com/types/flights.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/flights/159"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/159"
)
flight = res.json() {
"id": 159,
"flightNumber": "SQ9655",
"airline": "Singapore Airlines",
"departureAirport": "LHR",
"arrivalAirport": "DXB",
"departureAt": "2026-07-19T21:15:26.006Z",
"arrivalAt": "2026-07-20T08:28:26.006Z",
"durationMinutes": 673,
"status": "in_air",
"priceFrom": 2344.33,
"currency": "USD",
"createdAt": "2026-06-29T21:15:26.006Z"
}