showings #160
- listingId
- House in Beaumont · Beaumont
- prospectUserId
-
Everett Yundt @everett_yundt11
- scheduledAt
- status
- scheduled
- notes
- Caput vir suus necessitatibus communis stella quod.
- createdAt
Overview
showings / #160
#160
#160
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/160" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/160" ); 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/160"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/160"
)
showing = res.json() Response
{
"id": 160,
"listingId": 59,
"prospectUserId": 44,
"scheduledAt": "2024-12-12T16:07:36.181Z",
"status": "scheduled",
"notes": "Caput vir suus necessitatibus communis stella quod.",
"createdAt": "2024-11-22T15:06:49.421Z"
}