showings #230
- listingId
- Apartment in Fort Rhianna · Fort Rhianna
- prospectUserId
-
Gwendolyn Wyman @gwendolyn.wyman87
- scheduledAt
- status
- scheduled
- notes
- Pectus ad modi curia contego speculum vergo autem uterque abscido.
- createdAt
Overview
showings / #230
#230
#230
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/230" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/230" ); 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/230"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/230"
)
showing = res.json() Response
{
"id": 230,
"listingId": 86,
"prospectUserId": 40,
"scheduledAt": "2026-03-25T16:38:51.963Z",
"status": "scheduled",
"notes": "Pectus ad modi curia contego speculum vergo autem uterque abscido.",
"createdAt": "2026-03-25T04:29:10.942Z"
}