May
27
Wed
Japan Airlines JL3898
12:36 PM – 12:20 AM
ATL → BCN
From SGD1396.08
flights / #44
12:36 PM – 12:20 AM
ATL → BCN
From SGD1396.08
curl -sS \
"https://example-data.com/api/v1/flights/44" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/44"
);
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/44"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/44"
)
flight = res.json() {
"id": 44,
"flightNumber": "JL3898",
"airline": "Japan Airlines",
"departureAirport": "ATL",
"arrivalAirport": "BCN",
"departureAt": "2026-05-27T12:36:02.274Z",
"arrivalAt": "2026-05-28T00:20:02.274Z",
"durationMinutes": 704,
"status": "delayed",
"priceFrom": 1396.08,
"currency": "SGD",
"createdAt": "2026-04-01T12:36:02.274Z"
}