May
15
Sat
Delta Air Lines DL9502
3:25 PM – 12:43 AM
LAX → MAD
From SGD789.93
flights / #98
3:25 PM – 12:43 AM
LAX → MAD
From SGD789.93
curl -sS \
"https://example-data.com/api/v1/flights/98" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/98"
);
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/98"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/98"
)
flight = res.json() {
"id": 98,
"flightNumber": "DL9502",
"airline": "Delta Air Lines",
"departureAirport": "LAX",
"arrivalAirport": "MAD",
"departureAt": "2027-05-15T15:25:10.263Z",
"arrivalAt": "2027-05-16T00:43:10.263Z",
"durationMinutes": 558,
"status": "landed",
"priceFrom": 789.93,
"currency": "SGD",
"createdAt": "2027-04-11T15:25:10.263Z"
}