example-data.com

showings / #224

listingId
House in Camarillo · Camarillo
prospectUserId
24
scheduledAt
status
scheduled
notes
Vehemens contigo angustus decens callide enim vulgaris cohaero.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/224"
)
showing = res.json()
{
  "id": 224,
  "listingId": 84,
  "prospectUserId": 24,
  "scheduledAt": "2025-04-09T20:59:37.455Z",
  "status": "scheduled",
  "notes": "Vehemens contigo angustus decens callide enim vulgaris cohaero.",
  "createdAt": "2025-04-07T20:33:00.381Z"
}
Draftbit