example-data.com

showings / #121

listingId
House in Hammesboro · Hammesboro
prospectUserId
42
scheduledAt
status
completed
notes
Calco civitas tergeo asperiores cruentus pel reiciendis sponte.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/121"
)
showing = res.json()
{
  "id": 121,
  "listingId": 44,
  "prospectUserId": 42,
  "scheduledAt": "2025-09-29T11:59:35.736Z",
  "status": "completed",
  "notes": "Calco civitas tergeo asperiores cruentus pel reiciendis sponte.",
  "createdAt": "2025-10-02T13:30:28.834Z"
}
Draftbit