Dec
21
Mon
Singapore Airlines SQ9944
5:02 AM – 6:29 AM
FCO → FRA
From EUR 2123.28
Overview
flights / #284
5:02 AM – 6:29 AM
FCO → FRA
From EUR 2123.28
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/284" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/284" ); 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/284"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/284"
)
flight = res.json() Response
{
"id": 284,
"flightNumber": "SQ9944",
"airline": "Singapore Airlines",
"departureAirport": "FCO",
"arrivalAirport": "FRA",
"departureAt": "2026-12-21T05:02:10.866Z",
"arrivalAt": "2026-12-21T06:29:10.866Z",
"durationMinutes": 87,
"status": "cancelled",
"priceFrom": 2123.28,
"currency": "EUR",
"createdAt": "2026-10-27T05:02:10.866Z"
}