example-data.com

showings / #101

listingId
Land in Fort King · Fort King
prospectUserId
224
scheduledAt
status
cancelled
notes
Civitas certe caelum usitas apto.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/101"
)
showing = res.json()
{
  "id": 101,
  "listingId": 36,
  "prospectUserId": 224,
  "scheduledAt": "2025-12-08T16:08:19.094Z",
  "status": "cancelled",
  "notes": "Civitas certe caelum usitas apto.",
  "createdAt": "2025-11-20T05:32:24.170Z"
}
Draftbit