example-data.com

flights / #50

Aug
10
Mon

Southwest Airlines WN9951

2:31 PM – 7:39 PM

LAX → GRU

From JPY837.43

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/50"
)
flight = res.json()
{
  "id": 50,
  "flightNumber": "WN9951",
  "airline": "Southwest Airlines",
  "departureAirport": "LAX",
  "arrivalAirport": "GRU",
  "departureAt": "2026-08-10T14:31:15.780Z",
  "arrivalAt": "2026-08-10T19:39:15.780Z",
  "durationMinutes": 308,
  "status": "in_air",
  "priceFrom": 837.43,
  "currency": "JPY",
  "createdAt": "2026-06-01T14:31:15.780Z"
}
Draftbit