example-data.com

flights / #72

Feb
17
Tue

Southwest Airlines WN1660

7:51 PM – 9:54 AM

LHR → MEX

From GBP759.97

Component variants

curl -sS \
  "https://example-data.com/api/v1/flights/72" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/flights/72"
);
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/72"
);
const flight = (await res.json()) as Flight;
import requests

res = requests.get(
    "https://example-data.com/api/v1/flights/72"
)
flight = res.json()
{
  "id": 72,
  "flightNumber": "WN1660",
  "airline": "Southwest Airlines",
  "departureAirport": "LHR",
  "arrivalAirport": "MEX",
  "departureAt": "2026-02-17T19:51:57.263Z",
  "arrivalAt": "2026-02-18T09:54:57.263Z",
  "durationMinutes": 843,
  "status": "in_air",
  "priceFrom": 759.97,
  "currency": "GBP",
  "createdAt": "2025-12-15T19:51:57.263Z"
}
Draftbit