showings #331
- listingId
- Townhouse in Lake Imogenemouth · Lake Imogenemouth
- prospectUserId
-
Jarrell Flatley @jarrell_flatley39
- scheduledAt
- status
- completed
- notes
- Sunt taedium stultus abduco delectatio officiis surgo nihil.
- createdAt
Overview
showings / #331
#331
#331
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/331" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/331" ); 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/331"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/331"
)
showing = res.json() Response
{
"id": 331,
"listingId": 122,
"prospectUserId": 61,
"scheduledAt": "2025-08-30T20:51:41.302Z",
"status": "completed",
"notes": "Sunt taedium stultus abduco delectatio officiis surgo nihil.",
"createdAt": "2025-08-05T02:42:47.105Z"
}