showings #145
- listingId
- House in Lake Guillermo · Lake Guillermo
- prospectUserId
-
Amya Powlowski @amya_powlowski32
- scheduledAt
- status
- no_show
- notes
- Doloremque error villa compono arma cena terebro.
- createdAt
Overview
showings / #145
#145
#145
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/145" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/145" ); 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/145"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/145"
)
showing = res.json() Response
{
"id": 145,
"listingId": 55,
"prospectUserId": 80,
"scheduledAt": "2026-04-04T15:33:03.993Z",
"status": "no_show",
"notes": "Doloremque error villa compono arma cena terebro.",
"createdAt": "2026-03-31T10:12:33.166Z"
}