Sep
21
Mon
Japan Airlines JL3896
7:14 PM – 4:26 AM
MAD → SIN
From USD1870.40
flights / #179
7:14 PM – 4:26 AM
MAD → SIN
From USD1870.40
curl -sS \
"https://example-data.com/api/v1/flights/179" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/179"
);
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/179"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/179"
)
flight = res.json() {
"id": 179,
"flightNumber": "JL3896",
"airline": "Japan Airlines",
"departureAirport": "MAD",
"arrivalAirport": "SIN",
"departureAt": "2026-09-21T19:14:25.409Z",
"arrivalAt": "2026-09-22T04:26:25.409Z",
"durationMinutes": 552,
"status": "boarding",
"priceFrom": 1870.4,
"currency": "USD",
"createdAt": "2026-08-28T19:14:25.409Z"
}