example-data.com

showings / #146

listingId
House in Lake Guillermo · Lake Guillermo
prospectUserId
226
scheduledAt
status
cancelled
notes
Ocer quos audentia.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/146"
)
showing = res.json()
{
  "id": 146,
  "listingId": 55,
  "prospectUserId": 226,
  "scheduledAt": "2026-02-27T12:24:51.430Z",
  "status": "cancelled",
  "notes": "Ocer quos audentia.",
  "createdAt": "2026-02-15T04:09:36.978Z"
}
Draftbit