May
20
Thu
Southwest Airlines WN5726
2:54 PM – 7:56 PM
JFK → FCO
From CAD2395.38
flights / #127
2:54 PM – 7:56 PM
JFK → FCO
From CAD2395.38
curl -sS \
"https://example-data.com/api/v1/flights/127" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/127"
);
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/127"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/127"
)
flight = res.json() {
"id": 127,
"flightNumber": "WN5726",
"airline": "Southwest Airlines",
"departureAirport": "JFK",
"arrivalAirport": "FCO",
"departureAt": "2027-05-20T14:54:30.566Z",
"arrivalAt": "2027-05-20T19:56:30.566Z",
"durationMinutes": 302,
"status": "scheduled",
"priceFrom": 2395.38,
"currency": "CAD",
"createdAt": "2027-03-10T14:54:30.566Z"
}