showings #163
- listingId
- Townhouse in Fort Hunter · Fort Hunter
- prospectUserId
-
Lew O'Kon @lew.okon75
- scheduledAt
- status
- cancelled
- notes
- Tenus voluptatum tenetur utrimque curo timidus ambulo.
- createdAt
Overview
showings / #163
#163
#163
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/163" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/163" ); 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/163"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/163"
)
showing = res.json() Response
{
"id": 163,
"listingId": 60,
"prospectUserId": 131,
"scheduledAt": "2026-02-11T14:26:48.929Z",
"status": "cancelled",
"notes": "Tenus voluptatum tenetur utrimque curo timidus ambulo.",
"createdAt": "2026-01-12T19:54:35.136Z"
}