showings #5
- listingId
- House in New Otiliatown · New Otiliatown
- prospectUserId
-
Roberta Mueller-Yundt @roberta_mueller-yundt
- scheduledAt
- status
- cancelled
- notes
- Tamen vis clamo.
- createdAt
Overview
showings / #5
#5
#5
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/5" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/5" ); 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/5"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/5"
)
showing = res.json() Response
{
"id": 5,
"listingId": 2,
"prospectUserId": 162,
"scheduledAt": "2026-04-08T16:21:57.481Z",
"status": "cancelled",
"notes": "Tamen vis clamo.",
"createdAt": "2026-03-22T00:30:08.245Z"
}