example-data.com

showings / #10

listingId
Land in New Seamus · New Seamus
prospectUserId
108
scheduledAt
status
scheduled
notes
Calamitas coaegresco trepide trans vitium cupressus clam venio facere.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/10"
)
showing = res.json()
{
  "id": 10,
  "listingId": 4,
  "prospectUserId": 108,
  "scheduledAt": "2026-05-13T06:34:14.154Z",
  "status": "scheduled",
  "notes": "Calamitas coaegresco trepide trans vitium cupressus clam venio facere.",
  "createdAt": "2026-04-19T12:16:19.550Z"
}
Draftbit