Feb
28
Sun
Singapore Airlines SQ3577
9:03 PM – 1:27 AM
ICN → AMS
From GBP 452.94
Overview
flights / #223
9:03 PM – 1:27 AM
ICN → AMS
From GBP 452.94
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/223" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/223" ); 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/223"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/223"
)
flight = res.json() Response
{
"id": 223,
"flightNumber": "SQ3577",
"airline": "Singapore Airlines",
"departureAirport": "ICN",
"arrivalAirport": "AMS",
"departureAt": "2027-02-28T21:03:09.168Z",
"arrivalAt": "2027-03-01T01:27:09.168Z",
"durationMinutes": 264,
"status": "landed",
"priceFrom": 452.94,
"currency": "GBP",
"createdAt": "2026-12-23T21:03:09.168Z"
}