showings #403
- listingId
- Townhouse in Gerholdstead · Gerholdstead
- prospectUserId
-
Roberta Mueller-Yundt @roberta_mueller-yundt
- scheduledAt
- status
- completed
- notes
- Constans sol quaerat arma talis defessus via viriliter ipsum.
- createdAt
Overview
showings / #403
#403
#403
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/403" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/403" ); 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/403"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/403"
)
showing = res.json() Response
{
"id": 403,
"listingId": 149,
"prospectUserId": 162,
"scheduledAt": "2025-08-15T19:38:08.941Z",
"status": "completed",
"notes": "Constans sol quaerat arma talis defessus via viriliter ipsum.",
"createdAt": "2025-08-14T12:48:49.686Z"
}