showings #151
- listingId
- Condo in Ramonport · Ramonport
- prospectUserId
-
Green Kozey @green_kozey22
- scheduledAt
- status
- completed
- notes
- Solitudo certus accusantium abscido.
- createdAt
Overview
showings / #151
#151
#151
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/151" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/151" ); 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/151"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/151"
)
showing = res.json() Response
{
"id": 151,
"listingId": 56,
"prospectUserId": 49,
"scheduledAt": "2025-11-27T09:51:40.656Z",
"status": "completed",
"notes": "Solitudo certus accusantium abscido.",
"createdAt": "2025-11-25T02:54:51.025Z"
}