showings #135
- listingId
- Land in Ryannburgh · Ryannburgh
- prospectUserId
-
Kariane Schmitt @kariane.schmitt97
- scheduledAt
- status
- completed
- notes
- Bis allatus subseco cognomen supellex.
- createdAt
Overview
showings / #135
#135
#135
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/135" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/135" ); 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/135"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/135"
)
showing = res.json() Response
{
"id": 135,
"listingId": 51,
"prospectUserId": 32,
"scheduledAt": "2026-05-04T23:11:29.457Z",
"status": "completed",
"notes": "Bis allatus subseco cognomen supellex.",
"createdAt": "2026-05-07T19:40:06.851Z"
}