Dec
23
Wed
Singapore Airlines SQ9393
12:43 PM – 10:53 PM
FRA → NRT
From JPY 273.92
Overview
flights / #146
12:43 PM – 10:53 PM
FRA → NRT
From JPY 273.92
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/146" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/146" ); 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/146"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/146"
)
flight = res.json() Response
{
"id": 146,
"flightNumber": "SQ9393",
"airline": "Singapore Airlines",
"departureAirport": "FRA",
"arrivalAirport": "NRT",
"departureAt": "2026-12-23T12:43:09.363Z",
"arrivalAt": "2026-12-23T22:53:09.363Z",
"durationMinutes": 610,
"status": "scheduled",
"priceFrom": 273.92,
"currency": "JPY",
"createdAt": "2026-10-06T12:43:09.363Z"
}