showings #32
- listingId
- House in Geoffreyville · Geoffreyville
- prospectUserId
-
Abdul Rau @abdul.rau
- scheduledAt
- status
- cancelled
- notes
- Solum coadunatio uredo terror defungo.
- createdAt
Overview
showings / #32
#32
#32
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/32" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/32" ); 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/32"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/32"
)
showing = res.json() Response
{
"id": 32,
"listingId": 10,
"prospectUserId": 108,
"scheduledAt": "2026-02-26T10:27:04.589Z",
"status": "cancelled",
"notes": "Solum coadunatio uredo terror defungo.",
"createdAt": "2026-02-19T14:00:55.122Z"
}