Jul
7
Mon
Emirates EK1738
7:31 AM – 4:53 PM
BCN → LHR
From EUR458.59
flights / #34
7:31 AM – 4:53 PM
BCN → LHR
From EUR458.59
curl -sS \
"https://example-data.com/api/v1/flights/34" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/34"
);
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/34"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/34"
)
flight = res.json() {
"id": 34,
"flightNumber": "EK1738",
"airline": "Emirates",
"departureAirport": "BCN",
"arrivalAirport": "LHR",
"departureAt": "2025-07-07T07:31:01.090Z",
"arrivalAt": "2025-07-07T16:53:01.090Z",
"durationMinutes": 562,
"status": "scheduled",
"priceFrom": 458.59,
"currency": "EUR",
"createdAt": "2025-06-10T07:31:01.090Z"
}