Nov
30
Sun
Singapore Airlines SQ4377
8:19 PM – 2:42 AM
FCO → AMS
From USD 1437.86
Overview
flights / #204
8:19 PM – 2:42 AM
FCO → AMS
From USD 1437.86
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/204" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/204" ); const flight = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flights.d.ts https://example-data.com/types/flights.d.ts
import type { Flight } from "./types/flights";
const res = await fetch(
"https://example-data.com/api/v1/flights/204"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/204"
)
flight = res.json() Response
{
"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"
}