Jun
16
Tue
Japan Airlines JL9149
4:40 PM – 11:24 PM
BCN → YYZ
From SGD 1917.65
Overview
flights / #338
4:40 PM – 11:24 PM
BCN → YYZ
From SGD 1917.65
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/338" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/338" ); 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/338"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/338"
)
flight = res.json() Response
{
"id": 338,
"flightNumber": "JL9149",
"airline": "Japan Airlines",
"departureAirport": "BCN",
"arrivalAirport": "YYZ",
"departureAt": "2026-06-16T16:40:39.439Z",
"arrivalAt": "2026-06-16T23:24:39.439Z",
"durationMinutes": 404,
"status": "delayed",
"priceFrom": 1917.65,
"currency": "SGD",
"createdAt": "2026-06-09T16:40:39.439Z"
}