showings #194
- listingId
- Apartment in Sipesfield · Sipesfield
- prospectUserId
-
Hilda Crooks @hilda_crooks61
- scheduledAt
- status
- cancelled
- notes
- Pax crapula audentia tollo thymum crur tergum aiunt approbo quisquam.
- createdAt
Overview
showings / #194
#194
#194
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/194" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/194" ); 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/194"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/194"
)
showing = res.json() Response
{
"id": 194,
"listingId": 72,
"prospectUserId": 187,
"scheduledAt": "2025-09-28T18:04:02.954Z",
"status": "cancelled",
"notes": "Pax crapula audentia tollo thymum crur tergum aiunt approbo quisquam.",
"createdAt": "2025-09-24T20:23:10.619Z"
}