May
28
Wed
Southwest Airlines WN1836
4:15 AM – 1:05 PM
CDG → FRA
From SGD 2005.53
Overview
flights / #375
4:15 AM – 1:05 PM
CDG → FRA
From SGD 2005.53
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/375" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/375" ); 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/375"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/375"
)
flight = res.json() Response
{
"id": 375,
"flightNumber": "WN1836",
"airline": "Southwest Airlines",
"departureAirport": "CDG",
"arrivalAirport": "FRA",
"departureAt": "2025-05-28T04:15:58.682Z",
"arrivalAt": "2025-05-28T13:05:58.682Z",
"durationMinutes": 530,
"status": "in_air",
"priceFrom": 2005.53,
"currency": "SGD",
"createdAt": "2025-04-19T04:15:58.682Z"
}