May
10
Sun
American Airlines AA453
3:08 PM – 7:32 PM
DXB → JFK
From AUD1727.41
flights / #82
3:08 PM – 7:32 PM
DXB → JFK
From AUD1727.41
curl -sS \
"https://example-data.com/api/v1/flights/82" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/82"
);
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/82"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/82"
)
flight = res.json() {
"id": 82,
"flightNumber": "AA453",
"airline": "American Airlines",
"departureAirport": "DXB",
"arrivalAirport": "JFK",
"departureAt": "2026-05-10T15:08:32.791Z",
"arrivalAt": "2026-05-10T19:32:32.791Z",
"durationMinutes": 264,
"status": "scheduled",
"priceFrom": 1727.41,
"currency": "AUD",
"createdAt": "2026-02-09T15:08:32.791Z"
}