example-data.com

showings / #113

listingId
Condo in San Marcos · San Marcos
prospectUserId
94
scheduledAt
status
completed
notes
Adduco teres speciosus acervus surgo ultio vel.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/113"
)
showing = res.json()
{
  "id": 113,
  "listingId": 42,
  "prospectUserId": 94,
  "scheduledAt": "2026-04-21T19:31:43.946Z",
  "status": "completed",
  "notes": "Adduco teres speciosus acervus surgo ultio vel.",
  "createdAt": "2026-04-11T06:57:24.945Z"
}
Draftbit