example-data.com

flights / #143

Jan
17
Sun

Southwest Airlines WN7615

7:29 PM – 9:47 AM

DXB → AMS

From USD482.88

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/143"
)
flight = res.json()
{
  "id": 143,
  "flightNumber": "WN7615",
  "airline": "Southwest Airlines",
  "departureAirport": "DXB",
  "arrivalAirport": "AMS",
  "departureAt": "2027-01-17T19:29:54.938Z",
  "arrivalAt": "2027-01-18T09:47:54.938Z",
  "durationMinutes": 858,
  "status": "boarding",
  "priceFrom": 482.88,
  "currency": "USD",
  "createdAt": "2026-12-07T19:29:54.938Z"
}
Draftbit