Jun
30
Tue
Southwest Airlines WN1051
7:35 AM – 3:01 PM
NRT → FCO
From USD248.74
flights / #113
7:35 AM – 3:01 PM
NRT → FCO
From USD248.74
curl -sS \
"https://example-data.com/api/v1/flights/113" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/113"
);
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/113"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/113"
)
flight = res.json() {
"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"
}