Jul
25
Sat
Japan Airlines JL3975
5:22 AM – 6:27 PM
BCN → NRT
From AED468.32
flights / #18
5:22 AM – 6:27 PM
BCN → NRT
From AED468.32
curl -sS \
"https://example-data.com/api/v1/flights/18" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/18"
);
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/18"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/18"
)
flight = res.json() {
"id": 18,
"flightNumber": "JL3975",
"airline": "Japan Airlines",
"departureAirport": "BCN",
"arrivalAirport": "NRT",
"departureAt": "2026-07-25T05:22:37.928Z",
"arrivalAt": "2026-07-25T18:27:37.928Z",
"durationMinutes": 785,
"status": "boarding",
"priceFrom": 468.32,
"currency": "AED",
"createdAt": "2026-06-29T05:22:37.928Z"
}