May
20
Thu
Southwest Airlines WN5726
2:54 PM – 7:56 PM
JFK → FCO
From CAD 2395.38
Overview
flights / #127
2:54 PM – 7:56 PM
JFK → FCO
From CAD 2395.38
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/127" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/127" ); const flight = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flights.d.ts https://example-data.com/types/flights.d.ts
import type { Flight } from "./types/flights";
const res = await fetch(
"https://example-data.com/api/v1/flights/127"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/127"
)
flight = res.json() Response
{
"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"
}