example-data.com

showings / #37

listingId
House in La Mirada · La Mirada
prospectUserId
241
scheduledAt
status
completed
notes
Capto aestivus necessitatibus.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/37"
)
showing = res.json()
{
  "id": 37,
  "listingId": 12,
  "prospectUserId": 241,
  "scheduledAt": "2026-03-07T17:20:56.189Z",
  "status": "completed",
  "notes": "Capto aestivus necessitatibus.",
  "createdAt": "2026-02-26T18:11:17.049Z"
}
Draftbit