Aug
2
Sun
Delta Air Lines DL9589
8:36 AM – 10:35 AM
ORD → BCN
From AED1862.86
flights / #33
8:36 AM – 10:35 AM
ORD → BCN
From AED1862.86
curl -sS \
"https://example-data.com/api/v1/flights/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/33"
);
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/33"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/33"
)
flight = res.json() {
"id": 33,
"flightNumber": "DL9589",
"airline": "Delta Air Lines",
"departureAirport": "ORD",
"arrivalAirport": "BCN",
"departureAt": "2026-08-02T08:36:28.308Z",
"arrivalAt": "2026-08-02T10:35:28.308Z",
"durationMinutes": 119,
"status": "in_air",
"priceFrom": 1862.86,
"currency": "AED",
"createdAt": "2026-06-24T08:36:28.308Z"
}