showings #165
- listingId
- Townhouse in Washington · Washington
- prospectUserId
-
Lawrence Rogahn @lawrence_rogahn33
- scheduledAt
- status
- completed
- notes
- Conventus conspergo arguo suscipio admoveo cimentarius animadverto umbra colo.
- createdAt
Overview
showings / #165
#165
#165
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/165" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/165" ); 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/165"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/165"
)
showing = res.json() Response
{
"id": 165,
"listingId": 61,
"prospectUserId": 245,
"scheduledAt": "2026-03-31T18:41:26.190Z",
"status": "completed",
"notes": "Conventus conspergo arguo suscipio admoveo cimentarius animadverto umbra colo.",
"createdAt": "2026-03-03T07:15:59.608Z"
}