Oct
10
Fri
United Airlines UA2120
9:19 PM – 10:39 AM
MEX → ICN
From GBP1533.51
flights / #38
9:19 PM – 10:39 AM
MEX → ICN
From GBP1533.51
curl -sS \
"https://example-data.com/api/v1/flights/38" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/38"
);
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/38"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/38"
)
flight = res.json() {
"id": 38,
"flightNumber": "UA2120",
"airline": "United Airlines",
"departureAirport": "MEX",
"arrivalAirport": "ICN",
"departureAt": "2025-10-10T21:19:30.924Z",
"arrivalAt": "2025-10-11T10:39:30.924Z",
"durationMinutes": 800,
"status": "landed",
"priceFrom": 1533.51,
"currency": "GBP",
"createdAt": "2025-08-20T21:19:30.924Z"
}