Jul
7
Mon
Emirates EK1738
7:31 AM – 4:53 PM
BCN → LHR
From EUR 458.59
Overview
flights / #34
7:31 AM – 4:53 PM
BCN → LHR
From EUR 458.59
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/34" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/34" ); const flight = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flights.d.ts https://example-data.com/types/flights.d.ts
import type { Flight } from "./types/flights";
const res = await fetch(
"https://example-data.com/api/v1/flights/34"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/34"
)
flight = res.json() Response
{
"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"
}