Apr
5
Sun
Emirates EK5785
4:48 PM – 10:47 PM
ATL → BCN
From SGD1088.83
flights / #199
4:48 PM – 10:47 PM
ATL → BCN
From SGD1088.83
curl -sS \
"https://example-data.com/api/v1/flights/199" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/199"
);
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/199"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/199"
)
flight = res.json() {
"id": 199,
"flightNumber": "EK5785",
"airline": "Emirates",
"departureAirport": "ATL",
"arrivalAirport": "BCN",
"departureAt": "2026-04-05T16:48:54.900Z",
"arrivalAt": "2026-04-05T22:47:54.900Z",
"durationMinutes": 359,
"status": "cancelled",
"priceFrom": 1088.83,
"currency": "SGD",
"createdAt": "2026-02-02T16:48:54.900Z"
}