Jan
11
Sun
Japan Airlines JL3538
3:08 PM – 11:13 PM
MAD → JFK
From SGD1511.67
flights / #105
3:08 PM – 11:13 PM
MAD → JFK
From SGD1511.67
curl -sS \
"https://example-data.com/api/v1/flights/105" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/105"
);
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/105"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/105"
)
flight = res.json() {
"id": 105,
"flightNumber": "JL3538",
"airline": "Japan Airlines",
"departureAirport": "MAD",
"arrivalAirport": "JFK",
"departureAt": "2026-01-11T15:08:39.570Z",
"arrivalAt": "2026-01-11T23:13:39.570Z",
"durationMinutes": 485,
"status": "in_air",
"priceFrom": 1511.67,
"currency": "SGD",
"createdAt": "2025-10-21T15:08:39.570Z"
}