Sep
30
Tue
Japan Airlines JL7314
8:12 PM – 11:34 PM
ORD → JFK
From SGD 2360.76
Overview
flights / #80
8:12 PM – 11:34 PM
ORD → JFK
From SGD 2360.76
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/80" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/80" ); 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/80"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/80"
)
flight = res.json() Response
{
"id": 80,
"flightNumber": "JL7314",
"airline": "Japan Airlines",
"departureAirport": "ORD",
"arrivalAirport": "JFK",
"departureAt": "2025-09-30T20:12:29.965Z",
"arrivalAt": "2025-09-30T23:34:29.965Z",
"durationMinutes": 202,
"status": "landed",
"priceFrom": 2360.76,
"currency": "SGD",
"createdAt": "2025-08-08T20:12:29.965Z"
}