Nov
30
Sun
Singapore Airlines SQ4377
8:19 PM – 2:42 AM
FCO → AMS
From USD1437.86
flights / #204
8:19 PM – 2:42 AM
FCO → AMS
From USD1437.86
curl -sS \
"https://example-data.com/api/v1/flights/204" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/204"
);
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/204"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/204"
)
flight = res.json() {
"id": 204,
"flightNumber": "SQ4377",
"airline": "Singapore Airlines",
"departureAirport": "FCO",
"arrivalAirport": "AMS",
"departureAt": "2025-11-30T20:19:31.219Z",
"arrivalAt": "2025-12-01T02:42:31.219Z",
"durationMinutes": 383,
"status": "scheduled",
"priceFrom": 1437.86,
"currency": "USD",
"createdAt": "2025-11-04T20:19:31.219Z"
}