Apr
26
Sun
Singapore Airlines SQ2672
1:58 PM – 4:09 AM
DFW → GRU
From JPY 1331.48
Overview
flights / #341
1:58 PM – 4:09 AM
DFW → GRU
From JPY 1331.48
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/341" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/341" ); 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/341"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/341"
)
flight = res.json() Response
{
"id": 341,
"flightNumber": "SQ2672",
"airline": "Singapore Airlines",
"departureAirport": "DFW",
"arrivalAirport": "GRU",
"departureAt": "2026-04-26T13:58:08.344Z",
"arrivalAt": "2026-04-27T04:09:08.344Z",
"durationMinutes": 851,
"status": "scheduled",
"priceFrom": 1331.48,
"currency": "JPY",
"createdAt": "2026-02-20T13:58:08.344Z"
}