showings #16
- listingId
- Condo in Lake Willyport · Lake Willyport
- prospectUserId
-
General Morissette @general_morissette47
- scheduledAt
- status
- completed
- notes
- Caste venia somnus communis xiphias collum quis.
- createdAt
Overview
showings / #16
#16
#16
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/16" ); 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/16"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/16"
)
showing = res.json() Response
{
"id": 16,
"listingId": 5,
"prospectUserId": 184,
"scheduledAt": "2026-02-09T04:48:11.871Z",
"status": "completed",
"notes": "Caste venia somnus communis xiphias collum quis.",
"createdAt": "2026-02-12T11:33:05.882Z"
}