showings #21
- listingId
- House in South Maribelton · South Maribelton
- prospectUserId
-
Lazaro Rath @lazaro.rath42
- scheduledAt
- status
- completed
- notes
- Admoneo quod tonsor tersus cupiditate uredo.
- createdAt
Overview
showings / #21
#21
#21
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/21" ); 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/21"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/21"
)
showing = res.json() Response
{
"id": 21,
"listingId": 6,
"prospectUserId": 102,
"scheduledAt": "2026-05-10T09:10:42.572Z",
"status": "completed",
"notes": "Admoneo quod tonsor tersus cupiditate uredo.",
"createdAt": "2026-04-26T18:53:32.673Z"
}