example-data.com

flights / #7

Dec
19
Fri

Southwest Airlines WN568

10:29 AM – 11:57 PM

DXB → ATL

From AED1267.24

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/7"
)
flight = res.json()
{
  "id": 7,
  "flightNumber": "WN568",
  "airline": "Southwest Airlines",
  "departureAirport": "DXB",
  "arrivalAirport": "ATL",
  "departureAt": "2025-12-19T10:29:47.766Z",
  "arrivalAt": "2025-12-19T23:57:47.766Z",
  "durationMinutes": 808,
  "status": "scheduled",
  "priceFrom": 1267.24,
  "currency": "AED",
  "createdAt": "2025-11-21T10:29:47.766Z"
}
Draftbit