Jun
29
Mon
United Airlines UA1876
3:15 PM – 8:42 PM
JFK → AMS
From AUD388.03
flights / #220
3:15 PM – 8:42 PM
JFK → AMS
From AUD388.03
curl -sS \
"https://example-data.com/api/v1/flights/220" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/220"
);
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/220"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/220"
)
flight = res.json() {
"id": 220,
"flightNumber": "UA1876",
"airline": "United Airlines",
"departureAirport": "JFK",
"arrivalAirport": "AMS",
"departureAt": "2026-06-29T15:15:54.581Z",
"arrivalAt": "2026-06-29T20:42:54.581Z",
"durationMinutes": 327,
"status": "scheduled",
"priceFrom": 388.03,
"currency": "AUD",
"createdAt": "2026-05-28T15:15:54.581Z"
}