Nov
10
Mon
Emirates EK5888
5:25 AM – 12:03 PM
NRT → MAD
From JPY71.79
flights / #174
5:25 AM – 12:03 PM
NRT → MAD
From JPY71.79
curl -sS \
"https://example-data.com/api/v1/flights/174" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/174"
);
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/174"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/174"
)
flight = res.json() {
"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"
}