showings #112
- listingId
- Condo in San Marcos · San Marcos
- prospectUserId
-
Kennith Hahn @kennith.hahn
- scheduledAt
- status
- scheduled
- notes
- Caries capillus eveniet vir desparatus ventus aperio temeritas.
- createdAt
Overview
showings / #112
#112
#112
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/112" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/112" ); 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/112"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/112"
)
showing = res.json() Response
{
"id": 112,
"listingId": 42,
"prospectUserId": 201,
"scheduledAt": "2026-01-12T19:58:58.461Z",
"status": "scheduled",
"notes": "Caries capillus eveniet vir desparatus ventus aperio temeritas.",
"createdAt": "2025-12-16T20:14:13.562Z"
}