Feb
22
Sun
Singapore Airlines SQ2243
1:32 AM – 9:13 AM
BCN → YYZ
From USD431.04
flights / #177
1:32 AM – 9:13 AM
BCN → YYZ
From USD431.04
curl -sS \
"https://example-data.com/api/v1/flights/177" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/177"
);
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/177"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/177"
)
flight = res.json() {
"id": 177,
"flightNumber": "SQ2243",
"airline": "Singapore Airlines",
"departureAirport": "BCN",
"arrivalAirport": "YYZ",
"departureAt": "2026-02-22T01:32:35.775Z",
"arrivalAt": "2026-02-22T09:13:35.775Z",
"durationMinutes": 461,
"status": "boarding",
"priceFrom": 431.04,
"currency": "USD",
"createdAt": "2025-12-07T01:32:35.775Z"
}