example-data.com

flights / #225

Mar
26
Thu

Southwest Airlines WN7824

7:28 AM – 10:18 AM

NRT → FRA

From EUR173.52

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/225"
)
flight = res.json()
{
  "id": 225,
  "flightNumber": "WN7824",
  "airline": "Southwest Airlines",
  "departureAirport": "NRT",
  "arrivalAirport": "FRA",
  "departureAt": "2026-03-26T07:28:37.216Z",
  "arrivalAt": "2026-03-26T10:18:37.216Z",
  "durationMinutes": 170,
  "status": "landed",
  "priceFrom": 173.52,
  "currency": "EUR",
  "createdAt": "2026-03-03T07:28:37.216Z"
}
Draftbit