showings #438
- listingId
- House in Rhodaton · Rhodaton
- prospectUserId
-
Jennifer Stoltenberg @jennifer_stoltenberg
- scheduledAt
- status
- no_show
- notes
- Ulterius voluptatibus ea sollicito.
- createdAt
Overview
showings / #438
#438
#438
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/438" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/438" ); 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/438"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/438"
)
showing = res.json() Response
{
"id": 438,
"listingId": 163,
"prospectUserId": 25,
"scheduledAt": "2025-08-08T01:14:57.737Z",
"status": "no_show",
"notes": "Ulterius voluptatibus ea sollicito.",
"createdAt": "2025-08-04T12:42:23.620Z"
}