example-data.com

showings / #173

listingId
House in West Lemuel · West Lemuel
prospectUserId
244
scheduledAt
status
cancelled
notes
Assumenda usque vorax voro villa.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/173"
)
showing = res.json()
{
  "id": 173,
  "listingId": 63,
  "prospectUserId": 244,
  "scheduledAt": "2025-10-14T13:08:46.661Z",
  "status": "cancelled",
  "notes": "Assumenda usque vorax voro villa.",
  "createdAt": "2025-10-01T08:38:10.253Z"
}
Draftbit