Jan
26
Mon
British Airways BA4856
4:31 AM – 8:50 AM
DFW → ATL
From SGD 1658.58
Overview
flights / #172
4:31 AM – 8:50 AM
DFW → ATL
From SGD 1658.58
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/172" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/172" ); 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/172"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/172"
)
flight = res.json() Response
{
"id": 172,
"flightNumber": "BA4856",
"airline": "British Airways",
"departureAirport": "DFW",
"arrivalAirport": "ATL",
"departureAt": "2026-01-26T04:31:17.015Z",
"arrivalAt": "2026-01-26T08:50:17.015Z",
"durationMinutes": 259,
"status": "landed",
"priceFrom": 1658.58,
"currency": "SGD",
"createdAt": "2026-01-13T04:31:17.015Z"
}