example-data.com

showings / #232

listingId
Commercial Space in South Brandon · South Brandon
prospectUserId
131
scheduledAt
status
completed
notes
Cetera adnuo vitae charisma earum sto terebro delibero adiuvo synagoga.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/232"
)
showing = res.json()
{
  "id": 232,
  "listingId": 88,
  "prospectUserId": 131,
  "scheduledAt": "2026-06-05T04:54:38.480Z",
  "status": "completed",
  "notes": "Cetera adnuo vitae charisma earum sto terebro delibero adiuvo synagoga.",
  "createdAt": "2026-05-19T23:39:53.793Z"
}
Draftbit