example-data.com

showings / #15

listingId
Condo in Lake Willyport · Lake Willyport
prospectUserId
185
scheduledAt
status
cancelled
notes
Cruentus delectus dolores thymum.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/15"
)
showing = res.json()
{
  "id": 15,
  "listingId": 5,
  "prospectUserId": 185,
  "scheduledAt": "2026-05-23T21:25:00.208Z",
  "status": "cancelled",
  "notes": "Cruentus delectus dolores thymum.",
  "createdAt": "2026-05-01T19:42:25.917Z"
}
Draftbit