showings #310
- listingId
- Condo in Casimerport · Casimerport
- prospectUserId
-
Cassidy Christiansen @cassidy_christiansen38
- scheduledAt
- status
- cancelled
- notes
- Decretum surculus tabella velociter aranea atque absum minus.
- createdAt
Overview
showings / #310
#310
#310
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/310" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/310" ); 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/310"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/310"
)
showing = res.json() Response
{
"id": 310,
"listingId": 114,
"prospectUserId": 33,
"scheduledAt": "2025-09-27T22:15:38.324Z",
"status": "cancelled",
"notes": "Decretum surculus tabella velociter aranea atque absum minus.",
"createdAt": "2025-09-16T02:39:35.799Z"
}