Aug
11
Mon
Emirates EK7344
5:52 PM – 7:42 PM
LAX → CDG
From AUD 1843.03
Overview
flights / #222
5:52 PM – 7:42 PM
LAX → CDG
From AUD 1843.03
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/222" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/222" ); 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/222"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/222"
)
flight = res.json() Response
{
"id": 222,
"flightNumber": "EK7344",
"airline": "Emirates",
"departureAirport": "LAX",
"arrivalAirport": "CDG",
"departureAt": "2025-08-11T17:52:21.840Z",
"arrivalAt": "2025-08-11T19:42:21.840Z",
"durationMinutes": 110,
"status": "in_air",
"priceFrom": 1843.03,
"currency": "AUD",
"createdAt": "2025-08-02T17:52:21.840Z"
}