Feb
5
Fri
Japan Airlines JL1415
8:33 PM – 8:30 AM
JFK → MEX
From USD 2122.38
Overview
flights / #333
8:33 PM – 8:30 AM
JFK → MEX
From USD 2122.38
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/333" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/333" ); 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/333"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/333"
)
flight = res.json() Response
{
"id": 333,
"flightNumber": "JL1415",
"airline": "Japan Airlines",
"departureAirport": "JFK",
"arrivalAirport": "MEX",
"departureAt": "2027-02-05T20:33:53.284Z",
"arrivalAt": "2027-02-06T08:30:53.284Z",
"durationMinutes": 717,
"status": "cancelled",
"priceFrom": 2122.38,
"currency": "USD",
"createdAt": "2026-12-14T20:33:53.284Z"
}