example-data.com

showings / #55

listingId
House in Tyshawnland · Tyshawnland
prospectUserId
119
scheduledAt
status
scheduled
notes
Clamo volubilis asper video callide usus.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/55"
)
showing = res.json()
{
  "id": 55,
  "listingId": 18,
  "prospectUserId": 119,
  "scheduledAt": "2026-05-11T05:48:08.019Z",
  "status": "scheduled",
  "notes": "Clamo volubilis asper video callide usus.",
  "createdAt": "2026-04-20T19:15:56.793Z"
}
Draftbit