Oct
7
Wed
Emirates EK149
4:33 PM – 10:23 PM
DXB → ICN
From EUR 2230.50
Overview
flights / #84
4:33 PM – 10:23 PM
DXB → ICN
From EUR 2230.50
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/84" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/84" ); 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/84"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/84"
)
flight = res.json() Response
{
"id": 84,
"flightNumber": "EK149",
"airline": "Emirates",
"departureAirport": "DXB",
"arrivalAirport": "ICN",
"departureAt": "2026-10-07T16:33:57.240Z",
"arrivalAt": "2026-10-07T22:23:57.240Z",
"durationMinutes": 350,
"status": "landed",
"priceFrom": 2230.5,
"currency": "EUR",
"createdAt": "2026-07-13T16:33:57.240Z"
}