example-data.com

flights / #226

Jan
29
Thu

Southwest Airlines WN3115

5:49 PM – 1:48 AM

JFK → MEX

From SGD2399.49

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/226"
)
flight = res.json()
{
  "id": 226,
  "flightNumber": "WN3115",
  "airline": "Southwest Airlines",
  "departureAirport": "JFK",
  "arrivalAirport": "MEX",
  "departureAt": "2026-01-29T17:49:56.127Z",
  "arrivalAt": "2026-01-30T01:48:56.127Z",
  "durationMinutes": 479,
  "status": "cancelled",
  "priceFrom": 2399.49,
  "currency": "SGD",
  "createdAt": "2025-12-28T17:49:56.127Z"
}
Draftbit