Aug
11
Mon
Emirates EK7344
5:52 PM – 7:42 PM
LAX → CDG
From AUD1843.03
flights / #222
5:52 PM – 7:42 PM
LAX → CDG
From AUD1843.03
curl -sS \
"https://example-data.com/api/v1/flights/222" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/222"
);
const flight = await res.json();import type { Flight } from "https://example-data.com/types/flights.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/flights/222"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/222"
)
flight = res.json() {
"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"
}