Dec
23
Tue
Southwest Airlines WN608
12:08 PM – 4:04 PM
LHR → MAD
From JPY1513.75
flights / #32
12:08 PM – 4:04 PM
LHR → MAD
From JPY1513.75
curl -sS \
"https://example-data.com/api/v1/flights/32" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/32"
);
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/32"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/32"
)
flight = res.json() {
"id": 32,
"flightNumber": "WN608",
"airline": "Southwest Airlines",
"departureAirport": "LHR",
"arrivalAirport": "MAD",
"departureAt": "2025-12-23T12:08:32.824Z",
"arrivalAt": "2025-12-23T16:04:32.824Z",
"durationMinutes": 236,
"status": "in_air",
"priceFrom": 1513.75,
"currency": "JPY",
"createdAt": "2025-10-12T12:08:32.824Z"
}