Mar
13
Sat
Singapore Airlines SQ5477
12:13 PM – 3:53 PM
SIN → SYD
From GBP2258.50
flights / #67
12:13 PM – 3:53 PM
SIN → SYD
From GBP2258.50
curl -sS \
"https://example-data.com/api/v1/flights/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/67"
);
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/67"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/67"
)
flight = res.json() {
"id": 67,
"flightNumber": "SQ5477",
"airline": "Singapore Airlines",
"departureAirport": "SIN",
"arrivalAirport": "SYD",
"departureAt": "2027-03-13T12:13:02.702Z",
"arrivalAt": "2027-03-13T15:53:02.702Z",
"durationMinutes": 220,
"status": "boarding",
"priceFrom": 2258.5,
"currency": "GBP",
"createdAt": "2027-02-27T12:13:02.702Z"
}