Feb
2
Tue
Southwest Airlines WN4274
4:39 PM – 9:11 PM
FCO → DFW
From GBP735.78
flights / #95
4:39 PM – 9:11 PM
FCO → DFW
From GBP735.78
curl -sS \
"https://example-data.com/api/v1/flights/95" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/95"
);
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/95"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/95"
)
flight = res.json() {
"id": 95,
"flightNumber": "WN4274",
"airline": "Southwest Airlines",
"departureAirport": "FCO",
"arrivalAirport": "DFW",
"departureAt": "2027-02-02T16:39:52.730Z",
"arrivalAt": "2027-02-02T21:11:52.730Z",
"durationMinutes": 272,
"status": "scheduled",
"priceFrom": 735.78,
"currency": "GBP",
"createdAt": "2026-11-18T16:39:52.730Z"
}