Jun
6
Fri
Japan Airlines JL6531
2:55 PM – 5:46 PM
ICN → BCN
From SGD604.53
flights / #81
2:55 PM – 5:46 PM
ICN → BCN
From SGD604.53
curl -sS \
"https://example-data.com/api/v1/flights/81" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/81"
);
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/81"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/81"
)
flight = res.json() {
"id": 81,
"flightNumber": "JL6531",
"airline": "Japan Airlines",
"departureAirport": "ICN",
"arrivalAirport": "BCN",
"departureAt": "2025-06-06T14:55:41.172Z",
"arrivalAt": "2025-06-06T17:46:41.172Z",
"durationMinutes": 171,
"status": "delayed",
"priceFrom": 604.53,
"currency": "SGD",
"createdAt": "2025-03-30T14:55:41.172Z"
}