Jun
5
Thu
Southwest Airlines WN602
11:58 PM – 1:42 AM
ATL → FRA
From JPY 1758.12
Overview
flights / #355
11:58 PM – 1:42 AM
ATL → FRA
From JPY 1758.12
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/355" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/355" ); 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/355"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/355"
)
flight = res.json() Response
{
"id": 355,
"flightNumber": "WN602",
"airline": "Southwest Airlines",
"departureAirport": "ATL",
"arrivalAirport": "FRA",
"departureAt": "2025-06-05T23:58:43.161Z",
"arrivalAt": "2025-06-06T01:42:43.161Z",
"durationMinutes": 104,
"status": "boarding",
"priceFrom": 1758.12,
"currency": "JPY",
"createdAt": "2025-04-21T23:58:43.161Z"
}