example-data.com

showings / #46

listingId
Commercial Space in New Berniceborough · New Berniceborough
prospectUserId
197
scheduledAt
status
completed
notes
Tristis vorago attollo voco bonus adfectus contra caritas.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/46"
)
showing = res.json()
{
  "id": 46,
  "listingId": 15,
  "prospectUserId": 197,
  "scheduledAt": "2026-05-15T21:56:23.444Z",
  "status": "completed",
  "notes": "Tristis vorago attollo voco bonus adfectus contra caritas.",
  "createdAt": "2026-04-27T22:32:08.888Z"
}
Draftbit