Mar
14
Sun
Emirates EK1925
8:07 PM – 6:24 AM
MAD → FRA
From EUR 605.21
Overview
flights / #259
8:07 PM – 6:24 AM
MAD → FRA
From EUR 605.21
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/259" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/259" ); 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/259"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/259"
)
flight = res.json() Response
{
"id": 259,
"flightNumber": "EK1925",
"airline": "Emirates",
"departureAirport": "MAD",
"arrivalAirport": "FRA",
"departureAt": "2027-03-14T20:07:56.648Z",
"arrivalAt": "2027-03-15T06:24:56.648Z",
"durationMinutes": 617,
"status": "cancelled",
"priceFrom": 605.21,
"currency": "EUR",
"createdAt": "2027-02-01T20:07:56.648Z"
}