Apr
7
Tue
United Airlines UA3277
7:12 AM – 12:29 PM
LAX → ORD
From USD2249.64
flights / #164
7:12 AM – 12:29 PM
LAX → ORD
From USD2249.64
curl -sS \
"https://example-data.com/api/v1/flights/164" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/164"
);
const flight = await res.json();import type { Flight } from "https://example-data.com/types/flights.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/flights/164"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/164"
)
flight = res.json() {
"id": 164,
"flightNumber": "UA3277",
"airline": "United Airlines",
"departureAirport": "LAX",
"arrivalAirport": "ORD",
"departureAt": "2026-04-07T07:12:29.578Z",
"arrivalAt": "2026-04-07T12:29:29.578Z",
"durationMinutes": 317,
"status": "scheduled",
"priceFrom": 2249.64,
"currency": "USD",
"createdAt": "2026-04-02T07:12:29.578Z"
}