showings #342
- listingId
- Townhouse in West Maya · West Maya
- prospectUserId
-
Ike Breitenberg @ike.breitenberg
- scheduledAt
- status
- scheduled
- notes
- Cauda accedo coadunatio viscus aegrotatio velum cunctatio.
- createdAt
Overview
showings / #342
#342
#342
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/342" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/342" ); 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/342"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/342"
)
showing = res.json() Response
{
"id": 342,
"listingId": 125,
"prospectUserId": 72,
"scheduledAt": "2025-07-21T23:33:06.853Z",
"status": "scheduled",
"notes": "Cauda accedo coadunatio viscus aegrotatio velum cunctatio.",
"createdAt": "2025-07-26T01:43:54.680Z"
}