Feb
25
Wed
Japan Airlines JL8367
1:43 AM – 4:19 AM
FCO → BCN
From SGD 520.74
Overview
flights / #175
1:43 AM – 4:19 AM
FCO → BCN
From SGD 520.74
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/175" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/175" ); 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/175"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/175"
)
flight = res.json() Response
{
"id": 175,
"flightNumber": "JL8367",
"airline": "Japan Airlines",
"departureAirport": "FCO",
"arrivalAirport": "BCN",
"departureAt": "2026-02-25T01:43:04.481Z",
"arrivalAt": "2026-02-25T04:19:04.481Z",
"durationMinutes": 156,
"status": "in_air",
"priceFrom": 520.74,
"currency": "SGD",
"createdAt": "2025-12-14T01:43:04.481Z"
}