Jun
22
Sun
Singapore Airlines SQ2720
11:29 PM – 6:43 AM
LAX → DXB
From USD2255.20
flights / #66
11:29 PM – 6:43 AM
LAX → DXB
From USD2255.20
curl -sS \
"https://example-data.com/api/v1/flights/66" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/66"
);
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/66"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/66"
)
flight = res.json() {
"id": 66,
"flightNumber": "SQ2720",
"airline": "Singapore Airlines",
"departureAirport": "LAX",
"arrivalAirport": "DXB",
"departureAt": "2025-06-22T23:29:36.112Z",
"arrivalAt": "2025-06-23T06:43:36.112Z",
"durationMinutes": 434,
"status": "landed",
"priceFrom": 2255.2,
"currency": "USD",
"createdAt": "2025-04-05T23:29:36.112Z"
}