example-data.com

showings / #30

listingId
House in Nickolasbury · Nickolasbury
prospectUserId
164
scheduledAt
status
no_show
notes
Totidem acsi concido caelestis.
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/showings/30" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/showings/30"
);
const showing = await res.json();
import type { Showing } from "https://example-data.com/types/showings.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/showings/30"
);
const showing = (await res.json()) as Showing;
import requests

res = requests.get(
    "https://example-data.com/api/v1/showings/30"
)
showing = res.json()
{
  "id": 30,
  "listingId": 9,
  "prospectUserId": 164,
  "scheduledAt": "2026-05-26T12:20:42.340Z",
  "status": "no_show",
  "notes": "Totidem acsi concido caelestis.",
  "createdAt": "2026-05-14T15:20:11.465Z"
}
Draftbit