example-data.com

showings / #42

listingId
House in Lake Sanfordfurt · Lake Sanfordfurt
prospectUserId
82
scheduledAt
status
completed
notes
Aggero patruus versus vulgo tandem calcar assumenda necessitatibus.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/42"
)
showing = res.json()
{
  "id": 42,
  "listingId": 13,
  "prospectUserId": 82,
  "scheduledAt": "2025-09-11T14:44:44.787Z",
  "status": "completed",
  "notes": "Aggero patruus versus vulgo tandem calcar assumenda necessitatibus.",
  "createdAt": "2025-09-05T22:33:03.524Z"
}
Draftbit