Jun
30
Tue
Southwest Airlines WN1051
7:35 AM – 3:01 PM
NRT → FCO
From USD 248.74
Overview
flights / #113
7:35 AM – 3:01 PM
NRT → FCO
From USD 248.74
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/113" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/113" ); 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/113"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/113"
)
flight = res.json() Response
{
"id": 113,
"flightNumber": "WN1051",
"airline": "Southwest Airlines",
"departureAirport": "NRT",
"arrivalAirport": "FCO",
"departureAt": "2026-06-30T07:35:05.366Z",
"arrivalAt": "2026-06-30T15:01:05.366Z",
"durationMinutes": 446,
"status": "scheduled",
"priceFrom": 248.74,
"currency": "USD",
"createdAt": "2026-06-26T07:35:05.366Z"
}