example-data.com

showings / #89

listingId
Apartment in Gloverstad · Gloverstad
prospectUserId
210
scheduledAt
status
scheduled
notes
Surculus umquam bonus.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/89"
)
showing = res.json()
{
  "id": 89,
  "listingId": 31,
  "prospectUserId": 210,
  "scheduledAt": "2026-06-09T09:38:09.953Z",
  "status": "scheduled",
  "notes": "Surculus umquam bonus.",
  "createdAt": "2026-05-21T05:33:05.864Z"
}
Draftbit