showings #46
- listingId
- Commercial Space in New Berniceborough · New Berniceborough
- prospectUserId
-
Tabitha Ruecker @tabitha.ruecker
- scheduledAt
- status
- completed
- notes
- Tristis vorago attollo voco bonus adfectus contra caritas.
- createdAt
Overview
showings / #46
#46
#46
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/46" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/46" ); 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/46"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/46"
)
showing = res.json() Response
{
"id": 46,
"listingId": 15,
"prospectUserId": 197,
"scheduledAt": "2026-05-15T21:56:23.444Z",
"status": "completed",
"notes": "Tristis vorago attollo voco bonus adfectus contra caritas.",
"createdAt": "2026-04-27T22:32:08.888Z"
}