showings #61
- listingId
- Land in Gerlachshire · Gerlachshire
- prospectUserId
-
Lew O'Kon @lew.okon75
- scheduledAt
- status
- no_show
- notes
- Ad villa dens inventore amita ea denuncio tremo cinis.
- createdAt
Overview
showings / #61
#61
#61
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/61" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/61" ); 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/61"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/61"
)
showing = res.json() Response
{
"id": 61,
"listingId": 19,
"prospectUserId": 131,
"scheduledAt": "2026-05-16T16:49:30.565Z",
"status": "no_show",
"notes": "Ad villa dens inventore amita ea denuncio tremo cinis.",
"createdAt": "2026-05-06T14:35:13.082Z"
}