Aug
12
Tue
Japan Airlines JL1371
12:35 AM – 4:05 AM
MEX → AMS
From EUR 966.71
Overview
flights / #370
12:35 AM – 4:05 AM
MEX → AMS
From EUR 966.71
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/370" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/370" ); 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/370"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/370"
)
flight = res.json() Response
{
"id": 370,
"flightNumber": "JL1371",
"airline": "Japan Airlines",
"departureAirport": "MEX",
"arrivalAirport": "AMS",
"departureAt": "2025-08-12T00:35:16.715Z",
"arrivalAt": "2025-08-12T04:05:16.715Z",
"durationMinutes": 210,
"status": "boarding",
"priceFrom": 966.71,
"currency": "EUR",
"createdAt": "2025-05-26T00:35:16.715Z"
}