showings #15
- listingId
- Condo in Lake Willyport · Lake Willyport
- prospectUserId
-
Van Crona @van_crona
- scheduledAt
- status
- cancelled
- notes
- Cruentus delectus dolores thymum.
- createdAt
Overview
showings / #15
#15
#15
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/15" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/15" ); const showing = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/showings.d.ts https://example-data.com/types/showings.d.ts
import type { Showing } from "./types/showings";
const res = await fetch(
"https://example-data.com/api/v1/showings/15"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/15"
)
showing = res.json() Response
{
"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"
}