showings #95
- listingId
- House in Perris · Perris
- prospectUserId
-
Filiberto Fay @filiberto.fay59
- scheduledAt
- status
- cancelled
- notes
- Cometes cui labore virga explicabo desparatus peior volva civitas denuo.
- createdAt
Overview
showings / #95
#95
#95
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/95" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/95" ); 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/95"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/95"
)
showing = res.json() Response
{
"id": 95,
"listingId": 34,
"prospectUserId": 92,
"scheduledAt": "2026-05-02T03:07:45.293Z",
"status": "cancelled",
"notes": "Cometes cui labore virga explicabo desparatus peior volva civitas denuo.",
"createdAt": "2026-05-01T19:49:44.018Z"
}