showings #129
- listingId
- Townhouse in Owenmouth · Owenmouth
- prospectUserId
-
Nikko Kuhlman @nikko_kuhlman
- scheduledAt
- status
- cancelled
- notes
- Viduo cupiditas demergo appono caecus decimus cursim.
- createdAt
Overview
showings / #129
#129
#129
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/129" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/129" ); 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/129"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/129"
)
showing = res.json() Response
{
"id": 129,
"listingId": 47,
"prospectUserId": 122,
"scheduledAt": "2025-09-05T17:22:59.222Z",
"status": "cancelled",
"notes": "Viduo cupiditas demergo appono caecus decimus cursim.",
"createdAt": "2025-08-31T00:49:59.255Z"
}