Sep
30
Tue
Japan Airlines JL7314
8:12 PM – 11:34 PM
ORD → JFK
From SGD2360.76
flights / #80
8:12 PM – 11:34 PM
ORD → JFK
From SGD2360.76
curl -sS \
"https://example-data.com/api/v1/flights/80" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/80"
);
const flight = await res.json();import type { Flight } from "https://example-data.com/types/flights.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/flights/80"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/80"
)
flight = res.json() {
"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"
}