Apr
15
Wed
American Airlines AA3714
4:59 AM – 10:24 AM
MEX → BCN
From AED829.24
flights / #124
4:59 AM – 10:24 AM
MEX → BCN
From AED829.24
curl -sS \
"https://example-data.com/api/v1/flights/124" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/124"
);
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/124"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/124"
)
flight = res.json() {
"id": 124,
"flightNumber": "AA3714",
"airline": "American Airlines",
"departureAirport": "MEX",
"arrivalAirport": "BCN",
"departureAt": "2026-04-15T04:59:08.660Z",
"arrivalAt": "2026-04-15T10:24:08.660Z",
"durationMinutes": 325,
"status": "landed",
"priceFrom": 829.24,
"currency": "AED",
"createdAt": "2026-04-03T04:59:08.660Z"
}