showings #408
- listingId
- House in South Gate · South Gate
- prospectUserId
-
Sam Hegmann-Jast @sam_hegmann-jast86
- scheduledAt
- status
- cancelled
- notes
- Degusto votum viriliter demulceo.
- createdAt
Overview
showings / #408
#408
#408
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/408" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/408" ); 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/408"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/408"
)
showing = res.json() Response
{
"id": 408,
"listingId": 151,
"prospectUserId": 114,
"scheduledAt": "2026-06-07T11:44:23.210Z",
"status": "cancelled",
"notes": "Degusto votum viriliter demulceo.",
"createdAt": "2026-05-14T07:45:37.810Z"
}