example-data.com

showings / #136

listingId
House in Albany · Albany
prospectUserId
176
scheduledAt
status
scheduled
notes
Adduco claudeo alienus currus unde campana desidero dolorum tot.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/136"
)
showing = res.json()
{
  "id": 136,
  "listingId": 52,
  "prospectUserId": 176,
  "scheduledAt": "2026-01-18T02:39:24.006Z",
  "status": "scheduled",
  "notes": "Adduco claudeo alienus currus unde campana desidero dolorum tot.",
  "createdAt": "2026-01-05T09:06:02.517Z"
}
Draftbit