example-data.com

showings / #50

listingId
Commercial Space in Lake Charles · Lake Charles
prospectUserId
199
scheduledAt
status
scheduled
notes
Arx vaco cunae dens adamo demum.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/50"
)
showing = res.json()
{
  "id": 50,
  "listingId": 16,
  "prospectUserId": 199,
  "scheduledAt": "2025-11-06T18:58:36.929Z",
  "status": "scheduled",
  "notes": "Arx vaco cunae dens adamo demum.",
  "createdAt": "2025-10-25T13:09:39.412Z"
}
Draftbit