example-data.com

showings / #211

listingId
Condo in West Howell · West Howell
prospectUserId
233
scheduledAt
status
cancelled
notes
Substantia crur corpus tertius sapiente capto usus voco crux.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/211"
)
showing = res.json()
{
  "id": 211,
  "listingId": 78,
  "prospectUserId": 233,
  "scheduledAt": "2026-01-20T04:31:32.238Z",
  "status": "cancelled",
  "notes": "Substantia crur corpus tertius sapiente capto usus voco crux.",
  "createdAt": "2026-01-25T22:31:14.670Z"
}
Draftbit