example-data.com

showings / #115

listingId
Condo in San Marcos · San Marcos
prospectUserId
236
scheduledAt
status
no_show
notes
Confero abstergo pel crux canto velut ad advenio.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/115"
)
showing = res.json()
{
  "id": 115,
  "listingId": 42,
  "prospectUserId": 236,
  "scheduledAt": "2026-03-04T05:59:58.749Z",
  "status": "no_show",
  "notes": "Confero abstergo pel crux canto velut ad advenio.",
  "createdAt": "2026-02-25T03:30:40.542Z"
}
Draftbit