example-data.com

flights / #152

Jun
5
Thu

Southwest Airlines WN5322

6:02 AM – 12:59 PM

CDG → DFW

From AED1481.19

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/152"
)
flight = res.json()
{
  "id": 152,
  "flightNumber": "WN5322",
  "airline": "Southwest Airlines",
  "departureAirport": "CDG",
  "arrivalAirport": "DFW",
  "departureAt": "2025-06-05T06:02:33.903Z",
  "arrivalAt": "2025-06-05T12:59:33.903Z",
  "durationMinutes": 417,
  "status": "delayed",
  "priceFrom": 1481.19,
  "currency": "AED",
  "createdAt": "2025-04-18T06:02:33.903Z"
}
Draftbit