example-data.com

flights / #75

Jun
20
Fri

Southwest Airlines WN1348

6:17 AM – 11:40 AM

YYZ → MAD

From SGD854.66

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/75"
)
flight = res.json()
{
  "id": 75,
  "flightNumber": "WN1348",
  "airline": "Southwest Airlines",
  "departureAirport": "YYZ",
  "arrivalAirport": "MAD",
  "departureAt": "2025-06-20T06:17:41.433Z",
  "arrivalAt": "2025-06-20T11:40:41.433Z",
  "durationMinutes": 323,
  "status": "delayed",
  "priceFrom": 854.66,
  "currency": "SGD",
  "createdAt": "2025-06-04T06:17:41.433Z"
}
Draftbit