example-data.com

showings / #104

listingId
House in East Deion · East Deion
prospectUserId
171
scheduledAt
status
scheduled
notes
Officia infit spoliatio cerno audio copia toties possimus.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/104"
)
showing = res.json()
{
  "id": 104,
  "listingId": 38,
  "prospectUserId": 171,
  "scheduledAt": "2026-04-26T04:44:19.326Z",
  "status": "scheduled",
  "notes": "Officia infit spoliatio cerno audio copia toties possimus.",
  "createdAt": "2026-04-10T02:22:41.669Z"
}
Draftbit