showings #211
- listingId
- Condo in West Howell · West Howell
- prospectUserId
-
Jamil Mayer @jamil.mayer
- scheduledAt
- status
- cancelled
- notes
- Substantia crur corpus tertius sapiente capto usus voco crux.
- createdAt
Overview
showings / #211
#211
#211
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/211" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/211" ); 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/211"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/211"
)
showing = res.json() Response
{
"id": 211,
"listingId": 78,
"prospectUserId": 233,
"scheduledAt": "2026-01-20T04:31:32.238Z",
"status": "cancelled",
"notes": "Substantia crur corpus tertius sapiente capto usus voco crux.",
"createdAt": "2026-01-25T22:31:14.670Z"
}