Sep
24
Wed
United Airlines UA8730
9:28 AM – 4:18 PM
FCO → MEX
From CAD 176.69
Overview
flights / #138
9:28 AM – 4:18 PM
FCO → MEX
From CAD 176.69
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/138" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/138" ); 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/138"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/138"
)
flight = res.json() Response
{
"id": 138,
"flightNumber": "UA8730",
"airline": "United Airlines",
"departureAirport": "FCO",
"arrivalAirport": "MEX",
"departureAt": "2025-09-24T09:28:29.753Z",
"arrivalAt": "2025-09-24T16:18:29.753Z",
"durationMinutes": 410,
"status": "landed",
"priceFrom": 176.69,
"currency": "CAD",
"createdAt": "2025-09-05T09:28:29.753Z"
}