example-data.com

showings / #32

listingId
House in Geoffreyville · Geoffreyville
prospectUserId
108
scheduledAt
status
cancelled
notes
Solum coadunatio uredo terror defungo.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/32"
)
showing = res.json()
{
  "id": 32,
  "listingId": 10,
  "prospectUserId": 108,
  "scheduledAt": "2026-02-26T10:27:04.589Z",
  "status": "cancelled",
  "notes": "Solum coadunatio uredo terror defungo.",
  "createdAt": "2026-02-19T14:00:55.122Z"
}
Draftbit