Sep
21
Mon
Japan Airlines JL3896
7:14 PM – 4:26 AM
MAD → SIN
From USD 1870.40
Overview
flights / #179
7:14 PM – 4:26 AM
MAD → SIN
From USD 1870.40
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/179" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/179" ); 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/179"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/179"
)
flight = res.json() Response
{
"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"
}