Sep
18
Thu
United Airlines UA7870
2:50 AM – 5:50 AM
NRT → LAX
From CAD 2164.80
Overview
flights / #243
2:50 AM – 5:50 AM
NRT → LAX
From CAD 2164.80
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/243" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/243" ); 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/243"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/243"
)
flight = res.json() Response
{
"id": 243,
"flightNumber": "UA7870",
"airline": "United Airlines",
"departureAirport": "NRT",
"arrivalAirport": "LAX",
"departureAt": "2025-09-18T02:50:12.851Z",
"arrivalAt": "2025-09-18T05:50:12.851Z",
"durationMinutes": 180,
"status": "cancelled",
"priceFrom": 2164.8,
"currency": "CAD",
"createdAt": "2025-06-21T02:50:12.851Z"
}