showings #47
- listingId
- Commercial Space in New Berniceborough · New Berniceborough
- prospectUserId
-
Sheridan Turcotte @sheridan.turcotte
- scheduledAt
- status
- completed
- notes
- Decumbo fugit tabernus.
- createdAt
Overview
showings / #47
#47
#47
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/47" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/47" ); 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/47"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/47"
)
showing = res.json() Response
{
"id": 47,
"listingId": 15,
"prospectUserId": 153,
"scheduledAt": "2026-04-16T17:04:34.908Z",
"status": "completed",
"notes": "Decumbo fugit tabernus.",
"createdAt": "2026-03-26T16:38:47.287Z"
}