Oct
31
Sat
Emirates EK8513
10:19 PM – 6:25 AM
SIN → LHR
From USD 1278.61
Overview
flights / #229
10:19 PM – 6:25 AM
SIN → LHR
From USD 1278.61
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/229" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/229" ); 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/229"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/229"
)
flight = res.json() Response
{
"id": 229,
"flightNumber": "EK8513",
"airline": "Emirates",
"departureAirport": "SIN",
"arrivalAirport": "LHR",
"departureAt": "2026-10-31T22:19:53.569Z",
"arrivalAt": "2026-11-01T06:25:53.569Z",
"durationMinutes": 486,
"status": "landed",
"priceFrom": 1278.61,
"currency": "USD",
"createdAt": "2026-08-18T22:19:53.569Z"
}