Feb
9
Mon
United Airlines UA8479
7:30 AM – 9:34 PM
DFW → SYD
From AED 1390.57
Overview
flights / #110
7:30 AM – 9:34 PM
DFW → SYD
From AED 1390.57
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/110" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/110" ); 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/110"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/110"
)
flight = res.json() Response
{
"id": 110,
"flightNumber": "UA8479",
"airline": "United Airlines",
"departureAirport": "DFW",
"arrivalAirport": "SYD",
"departureAt": "2026-02-09T07:30:07.767Z",
"arrivalAt": "2026-02-09T21:34:07.767Z",
"durationMinutes": 844,
"status": "cancelled",
"priceFrom": 1390.57,
"currency": "AED",
"createdAt": "2025-12-02T07:30:07.767Z"
}