Nov
23
Sun
Emirates EK1366
4:46 AM – 6:02 AM
MAD → CDG
From GBP 1855.00
Overview
flights / #236
4:46 AM – 6:02 AM
MAD → CDG
From GBP 1855.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/236" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/236" ); 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/236"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/236"
)
flight = res.json() Response
{
"id": 236,
"flightNumber": "EK1366",
"airline": "Emirates",
"departureAirport": "MAD",
"arrivalAirport": "CDG",
"departureAt": "2025-11-23T04:46:47.245Z",
"arrivalAt": "2025-11-23T06:02:47.245Z",
"durationMinutes": 76,
"status": "landed",
"priceFrom": 1855,
"currency": "GBP",
"createdAt": "2025-09-27T04:46:47.245Z"
}