Oct
10
Fri
United Airlines UA2120
9:19 PM – 10:39 AM
MEX → ICN
From GBP 1533.51
Overview
flights / #38
9:19 PM – 10:39 AM
MEX → ICN
From GBP 1533.51
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/38" ); 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/38"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/38"
)
flight = res.json() Response
{
"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"
}