Oct
29
Thu
United Airlines UA731
5:59 PM – 7:13 PM
SYD → LAX
From CAD 2362.60
Overview
flights / #315
5:59 PM – 7:13 PM
SYD → LAX
From CAD 2362.60
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/315" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/315" ); 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/315"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/315"
)
flight = res.json() Response
{
"id": 315,
"flightNumber": "UA731",
"airline": "United Airlines",
"departureAirport": "SYD",
"arrivalAirport": "LAX",
"departureAt": "2026-10-29T17:59:14.348Z",
"arrivalAt": "2026-10-29T19:13:14.348Z",
"durationMinutes": 74,
"status": "landed",
"priceFrom": 2362.6,
"currency": "CAD",
"createdAt": "2026-10-25T17:59:14.348Z"
}