showings #254
- listingId
- Condo in Weissnatworth · Weissnatworth
- prospectUserId
-
Ricky Langosh @ricky.langosh66
- scheduledAt
- status
- cancelled
- notes
- Clamo eos solus creta agnosco ambitus contra dapifer uter.
- createdAt
Overview
showings / #254
#254
#254
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/254" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/254" ); 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/254"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/254"
)
showing = res.json() Response
{
"id": 254,
"listingId": 96,
"prospectUserId": 198,
"scheduledAt": "2025-12-18T04:00:55.524Z",
"status": "cancelled",
"notes": "Clamo eos solus creta agnosco ambitus contra dapifer uter.",
"createdAt": "2025-11-26T12:28:14.712Z"
}