example-data.com

flights / #232

Jun
4
Thu

Southwest Airlines WN8724

7:52 PM – 6:59 AM

JFK → AMS

From GBP1319.04

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/232"
)
flight = res.json()
{
  "id": 232,
  "flightNumber": "WN8724",
  "airline": "Southwest Airlines",
  "departureAirport": "JFK",
  "arrivalAirport": "AMS",
  "departureAt": "2026-06-04T19:52:14.462Z",
  "arrivalAt": "2026-06-05T06:59:14.462Z",
  "durationMinutes": 667,
  "status": "cancelled",
  "priceFrom": 1319.04,
  "currency": "GBP",
  "createdAt": "2026-04-05T19:52:14.462Z"
}
Draftbit