Jul
25
Sat
Japan Airlines JL3975
5:22 AM – 6:27 PM
BCN → NRT
From AED 468.32
Overview
flights / #18
5:22 AM – 6:27 PM
BCN → NRT
From AED 468.32
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/18" ); 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/18"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/18"
)
flight = res.json() Response
{
"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"
}