showings #377
- listingId
- Apartment in Leschmouth · Leschmouth
- prospectUserId
-
Lemuel Jast @lemuel.jast27
- scheduledAt
- status
- completed
- notes
- Adamo vestigium officiis ambitus nam vallum caveo nulla curto vorago.
- createdAt
Overview
showings / #377
#377
#377
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/377" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/377" ); 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/377"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/377"
)
showing = res.json() Response
{
"id": 377,
"listingId": 140,
"prospectUserId": 105,
"scheduledAt": "2026-05-08T22:49:31.458Z",
"status": "completed",
"notes": "Adamo vestigium officiis ambitus nam vallum caveo nulla curto vorago.",
"createdAt": "2026-05-08T03:46:39.641Z"
}