Jan
5
Tue
Southwest Airlines WN1777
10:30 AM – 9:54 PM
LAX → MEX
From AUD 2487.93
Overview
flights / #99
10:30 AM – 9:54 PM
LAX → MEX
From AUD 2487.93
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/99" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/99" ); 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/99"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/99"
)
flight = res.json() Response
{
"id": 99,
"flightNumber": "WN1777",
"airline": "Southwest Airlines",
"departureAirport": "LAX",
"arrivalAirport": "MEX",
"departureAt": "2027-01-05T10:30:42.298Z",
"arrivalAt": "2027-01-05T21:54:42.298Z",
"durationMinutes": 684,
"status": "boarding",
"priceFrom": 2487.93,
"currency": "AUD",
"createdAt": "2026-11-29T10:30:42.298Z"
}