showings #150
- listingId
- Condo in Ramonport · Ramonport
- prospectUserId
-
Douglas Frami @douglas.frami
- scheduledAt
- status
- completed
- notes
- Thema auditor video congregatio amor.
- createdAt
Overview
showings / #150
#150
#150
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/150" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/150" ); 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/150"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/150"
)
showing = res.json() Response
{
"id": 150,
"listingId": 56,
"prospectUserId": 148,
"scheduledAt": "2024-10-31T03:46:18.506Z",
"status": "completed",
"notes": "Thema auditor video congregatio amor.",
"createdAt": "2024-10-30T23:44:33.889Z"
}