Dec
12
Sat
Singapore Airlines SQ5571
10:18 AM – 11:18 PM
BCN → DFW
From USD 1891.45
Overview
flights / #155
10:18 AM – 11:18 PM
BCN → DFW
From USD 1891.45
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/155" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/155" ); 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/155"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/155"
)
flight = res.json() Response
{
"id": 155,
"flightNumber": "SQ5571",
"airline": "Singapore Airlines",
"departureAirport": "BCN",
"arrivalAirport": "DFW",
"departureAt": "2026-12-12T10:18:45.904Z",
"arrivalAt": "2026-12-12T23:18:45.904Z",
"durationMinutes": 780,
"status": "landed",
"priceFrom": 1891.45,
"currency": "USD",
"createdAt": "2026-09-30T10:18:45.904Z"
}