Jun
1
Mon
United Airlines UA1616
11:41 AM – 5:19 PM
YYZ → CDG
From SGD 773.49
Overview
flights / #254
11:41 AM – 5:19 PM
YYZ → CDG
From SGD 773.49
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/254" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/254" ); 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/254"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/254"
)
flight = res.json() Response
{
"id": 254,
"flightNumber": "UA1616",
"airline": "United Airlines",
"departureAirport": "YYZ",
"arrivalAirport": "CDG",
"departureAt": "2026-06-01T11:41:44.177Z",
"arrivalAt": "2026-06-01T17:19:44.177Z",
"durationMinutes": 338,
"status": "in_air",
"priceFrom": 773.49,
"currency": "SGD",
"createdAt": "2026-03-13T11:41:44.177Z"
}