example-data.com

showings / #51

listingId
Commercial Space in Lake Charles · Lake Charles
prospectUserId
83
scheduledAt
status
scheduled
notes
Beatae magnam desidero tondeo timor verus talio tubineus alo doloribus.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/51"
)
showing = res.json()
{
  "id": 51,
  "listingId": 16,
  "prospectUserId": 83,
  "scheduledAt": "2025-10-19T13:58:07.774Z",
  "status": "scheduled",
  "notes": "Beatae magnam desidero tondeo timor verus talio tubineus alo doloribus.",
  "createdAt": "2025-09-21T22:38:55.677Z"
}
Draftbit