example-data.com

showings / #111

listingId
House in Port Charlotte · Port Charlotte
prospectUserId
87
scheduledAt
status
cancelled
notes
Demoror cado tergeo tersus.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/111"
)
showing = res.json()
{
  "id": 111,
  "listingId": 41,
  "prospectUserId": 87,
  "scheduledAt": "2026-04-18T22:09:13.644Z",
  "status": "cancelled",
  "notes": "Demoror cado tergeo tersus.",
  "createdAt": "2026-04-07T21:35:56.021Z"
}
Draftbit