Oct
12
Mon
United Airlines UA9073
1:58 PM – 2:19 AM
ORD → DFW
From AED 1533.19
Overview
flights / #285
1:58 PM – 2:19 AM
ORD → DFW
From AED 1533.19
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/285" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/285" ); 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/285"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/285"
)
flight = res.json() Response
{
"id": 285,
"flightNumber": "UA9073",
"airline": "United Airlines",
"departureAirport": "ORD",
"arrivalAirport": "DFW",
"departureAt": "2026-10-12T13:58:31.195Z",
"arrivalAt": "2026-10-13T02:19:31.195Z",
"durationMinutes": 741,
"status": "boarding",
"priceFrom": 1533.19,
"currency": "AED",
"createdAt": "2026-07-14T13:58:31.195Z"
}