Jan
12
Tue
Southwest Airlines WN8394
6:44 AM – 10:48 AM
DXB → FCO
From AUD1091.81
flights / #119
6:44 AM – 10:48 AM
DXB → FCO
From AUD1091.81
curl -sS \
"https://example-data.com/api/v1/flights/119" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/119"
);
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/119"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/119"
)
flight = res.json() {
"id": 119,
"flightNumber": "WN8394",
"airline": "Southwest Airlines",
"departureAirport": "DXB",
"arrivalAirport": "FCO",
"departureAt": "2027-01-12T06:44:46.676Z",
"arrivalAt": "2027-01-12T10:48:46.676Z",
"durationMinutes": 244,
"status": "cancelled",
"priceFrom": 1091.81,
"currency": "AUD",
"createdAt": "2026-11-08T06:44:46.676Z"
}