May
11
Tue
United Airlines UA8560
7:22 PM – 11:13 PM
BCN → LAX
From JPY882.04
flights / #42
7:22 PM – 11:13 PM
BCN → LAX
From JPY882.04
curl -sS \
"https://example-data.com/api/v1/flights/42" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/42"
);
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/42"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/42"
)
flight = res.json() {
"id": 42,
"flightNumber": "UA8560",
"airline": "United Airlines",
"departureAirport": "BCN",
"arrivalAirport": "LAX",
"departureAt": "2027-05-11T19:22:40.445Z",
"arrivalAt": "2027-05-11T23:13:40.445Z",
"durationMinutes": 231,
"status": "landed",
"priceFrom": 882.04,
"currency": "JPY",
"createdAt": "2027-04-10T19:22:40.445Z"
}