example-data.com

showings / #40

listingId
House in Lake Sanfordfurt · Lake Sanfordfurt
prospectUserId
6
scheduledAt
status
completed
notes
Vacuus clamo rem claudeo speculum.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/40"
)
showing = res.json()
{
  "id": 40,
  "listingId": 13,
  "prospectUserId": 6,
  "scheduledAt": "2025-12-21T08:16:15.853Z",
  "status": "completed",
  "notes": "Vacuus clamo rem claudeo speculum.",
  "createdAt": "2025-12-10T03:29:57.325Z"
}
Draftbit