May
29
Fri
United Airlines UA7655
11:36 AM – 7:41 PM
LHR → NRT
From JPY 1541.29
Overview
flights / #395
11:36 AM – 7:41 PM
LHR → NRT
From JPY 1541.29
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/395" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/395" ); 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/395"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/395"
)
flight = res.json() Response
{
"id": 395,
"flightNumber": "UA7655",
"airline": "United Airlines",
"departureAirport": "LHR",
"arrivalAirport": "NRT",
"departureAt": "2026-05-29T11:36:44.240Z",
"arrivalAt": "2026-05-29T19:41:44.240Z",
"durationMinutes": 485,
"status": "scheduled",
"priceFrom": 1541.29,
"currency": "JPY",
"createdAt": "2026-05-08T11:36:44.240Z"
}