showings #206
- listingId
- Condo in Billings · Billings
- prospectUserId
-
Dovie Gorczany @dovie.gorczany
- scheduledAt
- status
- completed
- notes
- Villa arma cernuus quidem triduana volubilis amicitia bellum cibo caste.
- createdAt
Overview
showings / #206
#206
#206
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/206" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/206" ); 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/206"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/206"
)
showing = res.json() Response
{
"id": 206,
"listingId": 76,
"prospectUserId": 111,
"scheduledAt": "2025-06-10T05:55:38.214Z",
"status": "completed",
"notes": "Villa arma cernuus quidem triduana volubilis amicitia bellum cibo caste.",
"createdAt": "2025-05-22T00:44:25.450Z"
}