example-data.com

showings / #98

listingId
House in New Carlos · New Carlos
prospectUserId
5
scheduledAt
status
completed
notes
Alii annus unde credo.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/98"
)
showing = res.json()
{
  "id": 98,
  "listingId": 35,
  "prospectUserId": 5,
  "scheduledAt": "2026-05-10T17:00:32.519Z",
  "status": "completed",
  "notes": "Alii annus unde credo.",
  "createdAt": "2026-04-22T21:28:12.616Z"
}
Draftbit