example-data.com

showings / #47

listingId
Commercial Space in New Berniceborough · New Berniceborough
prospectUserId
153
scheduledAt
status
completed
notes
Decumbo fugit tabernus.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/47"
)
showing = res.json()
{
  "id": 47,
  "listingId": 15,
  "prospectUserId": 153,
  "scheduledAt": "2026-04-16T17:04:34.908Z",
  "status": "completed",
  "notes": "Decumbo fugit tabernus.",
  "createdAt": "2026-03-26T16:38:47.287Z"
}
Draftbit