example-data.com

showings / #93

listingId
House in Laredo · Laredo
prospectUserId
91
scheduledAt
status
completed
notes
Conduco deinde ut succurro vacuus deorsum.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/93"
)
showing = res.json()
{
  "id": 93,
  "listingId": 33,
  "prospectUserId": 91,
  "scheduledAt": "2025-08-27T17:13:56.474Z",
  "status": "completed",
  "notes": "Conduco deinde ut succurro vacuus deorsum.",
  "createdAt": "2025-08-03T21:52:12.391Z"
}
Draftbit