example-data.com

showings / #193

listingId
House in Henderson · Henderson
prospectUserId
12
scheduledAt
status
cancelled
notes
Neque nesciunt usque angulus provident tres videlicet adsidue.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/193"
)
showing = res.json()
{
  "id": 193,
  "listingId": 71,
  "prospectUserId": 12,
  "scheduledAt": "2026-04-20T11:39:08.349Z",
  "status": "cancelled",
  "notes": "Neque nesciunt usque angulus provident tres videlicet adsidue.",
  "createdAt": "2026-04-07T17:33:33.337Z"
}
Draftbit