Jul
16
Thu
Delta Air Lines DL9364
2:23 PM – 2:37 AM
MEX → DXB
From SGD583.25
flights / #13
2:23 PM – 2:37 AM
MEX → DXB
From SGD583.25
curl -sS \
"https://example-data.com/api/v1/flights/13" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/13"
);
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/13"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/13"
)
flight = res.json() {
"id": 13,
"flightNumber": "DL9364",
"airline": "Delta Air Lines",
"departureAirport": "MEX",
"arrivalAirport": "DXB",
"departureAt": "2026-07-16T14:23:31.078Z",
"arrivalAt": "2026-07-17T02:37:31.078Z",
"durationMinutes": 734,
"status": "cancelled",
"priceFrom": 583.25,
"currency": "SGD",
"createdAt": "2026-07-07T14:23:31.078Z"
}