example-data.com

showings / #26

listingId
Townhouse in Rapid City · Rapid City
prospectUserId
65
scheduledAt
status
completed
notes
Coadunatio venustas delego cupressus arguo capio.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/26"
)
showing = res.json()
{
  "id": 26,
  "listingId": 8,
  "prospectUserId": 65,
  "scheduledAt": "2026-04-29T18:13:35.693Z",
  "status": "completed",
  "notes": "Coadunatio venustas delego cupressus arguo capio.",
  "createdAt": "2026-04-12T05:33:50.211Z"
}
Draftbit