showings #311
- listingId
- Condo in Casimerport · Casimerport
- prospectUserId
-
Jonas Rath @jonas.rath
- scheduledAt
- status
- scheduled
- notes
- Quos laudantium tempore civis curo.
- createdAt
Overview
showings / #311
#311
#311
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/311" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/311" ); 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/311"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/311"
)
showing = res.json() Response
{
"id": 311,
"listingId": 114,
"prospectUserId": 138,
"scheduledAt": "2025-08-13T14:39:09.785Z",
"status": "scheduled",
"notes": "Quos laudantium tempore civis curo.",
"createdAt": "2025-08-13T16:36:26.498Z"
}