Nov
10
Mon
Emirates EK5888
5:25 AM – 12:03 PM
NRT → MAD
From JPY 71.79
Overview
flights / #174
5:25 AM – 12:03 PM
NRT → MAD
From JPY 71.79
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/174" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/174" ); 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/174"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/174"
)
flight = res.json() Response
{
"id": 174,
"flightNumber": "EK5888",
"airline": "Emirates",
"departureAirport": "NRT",
"arrivalAirport": "MAD",
"departureAt": "2025-11-10T05:25:15.418Z",
"arrivalAt": "2025-11-10T12:03:15.418Z",
"durationMinutes": 398,
"status": "landed",
"priceFrom": 71.79,
"currency": "JPY",
"createdAt": "2025-09-16T05:25:15.418Z"
}