showings / #218
- listingId
- House in Fort Randi · Fort Randi
- prospectUserId
- 48
- scheduledAt
- status
- no_show
- notes
- Sumo perspiciatis calcar cribro.
- createdAt
Component variants
Medium
#218
#218
Small
showings/218 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/218" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/218"
);
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/218"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/218"
)
showing = res.json() {
"id": 218,
"listingId": 82,
"prospectUserId": 48,
"scheduledAt": "2026-05-06T21:27:56.353Z",
"status": "no_show",
"notes": "Sumo perspiciatis calcar cribro.",
"createdAt": "2026-04-17T13:01:14.105Z"
}