Aug
8
Fri
Japan Airlines JL8956
6:11 PM – 8:22 AM
LHR → NRT
From GBP2457.59
flights / #97
6:11 PM – 8:22 AM
LHR → NRT
From GBP2457.59
curl -sS \
"https://example-data.com/api/v1/flights/97" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/97"
);
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/97"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/97"
)
flight = res.json() {
"id": 97,
"flightNumber": "JL8956",
"airline": "Japan Airlines",
"departureAirport": "LHR",
"arrivalAirport": "NRT",
"departureAt": "2025-08-08T18:11:15.003Z",
"arrivalAt": "2025-08-09T08:22:15.003Z",
"durationMinutes": 851,
"status": "scheduled",
"priceFrom": 2457.59,
"currency": "GBP",
"createdAt": "2025-07-08T18:11:15.003Z"
}