example-data.com

showings / #190

listingId
Condo in New Busterworth · New Busterworth
prospectUserId
15
scheduledAt
status
completed
notes
Caute debitis eum mollitia adopto decerno vigor voluptates.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/190"
)
showing = res.json()
{
  "id": 190,
  "listingId": 70,
  "prospectUserId": 15,
  "scheduledAt": "2026-05-18T12:18:36.993Z",
  "status": "completed",
  "notes": "Caute debitis eum mollitia adopto decerno vigor voluptates.",
  "createdAt": "2026-05-02T12:19:41.514Z"
}
Draftbit