showings #293
- listingId
- Condo in Williamsonhaven · Williamsonhaven
- prospectUserId
-
Brock Hackett @brock.hackett
- scheduledAt
- status
- scheduled
- notes
- Advenio cubo terreo vulariter curtus abstergo.
- createdAt
Overview
showings / #293
#293
#293
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/293" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/293" ); 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/293"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/293"
)
showing = res.json() Response
{
"id": 293,
"listingId": 108,
"prospectUserId": 161,
"scheduledAt": "2025-08-31T21:55:24.100Z",
"status": "scheduled",
"notes": "Advenio cubo terreo vulariter curtus abstergo.",
"createdAt": "2025-08-03T22:11:05.926Z"
}