Oct
31
Fri
United Airlines UA6275
9:03 AM – 11:54 AM
ATL → FRA
From AED1020.94
flights / #109
9:03 AM – 11:54 AM
ATL → FRA
From AED1020.94
curl -sS \
"https://example-data.com/api/v1/flights/109" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/109"
);
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/109"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/109"
)
flight = res.json() {
"id": 109,
"flightNumber": "UA6275",
"airline": "United Airlines",
"departureAirport": "ATL",
"arrivalAirport": "FRA",
"departureAt": "2025-10-31T09:03:03.102Z",
"arrivalAt": "2025-10-31T11:54:03.102Z",
"durationMinutes": 171,
"status": "cancelled",
"priceFrom": 1020.94,
"currency": "AED",
"createdAt": "2025-08-05T09:03:03.102Z"
}