Nov
22
Sun
Emirates EK6349
2:14 AM – 2:17 PM
MEX → CDG
From CAD 1464.53
Overview
flights / #301
2:14 AM – 2:17 PM
MEX → CDG
From CAD 1464.53
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/301" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/301" ); 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/301"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/301"
)
flight = res.json() Response
{
"id": 301,
"flightNumber": "EK6349",
"airline": "Emirates",
"departureAirport": "MEX",
"arrivalAirport": "CDG",
"departureAt": "2026-11-22T02:14:39.552Z",
"arrivalAt": "2026-11-22T14:17:39.552Z",
"durationMinutes": 723,
"status": "scheduled",
"priceFrom": 1464.53,
"currency": "CAD",
"createdAt": "2026-09-21T02:14:39.552Z"
}