showings #164
- listingId
- Townhouse in Fort Hunter · Fort Hunter
- prospectUserId
-
Jennifer Hoeger @jennifer.hoeger
- scheduledAt
- status
- scheduled
- notes
- Theca aro creber desolo suasoria.
- createdAt
Overview
showings / #164
#164
#164
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/164" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/164" ); 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/164"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/164"
)
showing = res.json() Response
{
"id": 164,
"listingId": 60,
"prospectUserId": 119,
"scheduledAt": "2025-12-11T02:53:14.699Z",
"status": "scheduled",
"notes": "Theca aro creber desolo suasoria.",
"createdAt": "2025-11-17T19:43:46.618Z"
}