showings #176
- listingId
- Apartment in North Marlenview · North Marlenview
- prospectUserId
-
Zachariah Herzog @zachariah_herzog42
- scheduledAt
- status
- no_show
- notes
- Coaegresco tempus ambitus defluo aestus depereo amoveo repellendus.
- createdAt
Overview
showings / #176
#176
#176
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/176" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/176" ); 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/176"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/176"
)
showing = res.json() Response
{
"id": 176,
"listingId": 64,
"prospectUserId": 15,
"scheduledAt": "2025-08-12T02:52:14.282Z",
"status": "no_show",
"notes": "Coaegresco tempus ambitus defluo aestus depereo amoveo repellendus.",
"createdAt": "2025-07-28T05:33:32.138Z"
}