showings #143
- listingId
- Apartment in Terrenceburgh · Terrenceburgh
- prospectUserId
-
Wallace Batz @wallace_batz
- scheduledAt
- status
- completed
- notes
- Terminatio consequatur curvo nostrum similique claudeo decor.
- createdAt
Overview
showings / #143
#143
#143
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/143" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/143" ); 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/143"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/143"
)
showing = res.json() Response
{
"id": 143,
"listingId": 54,
"prospectUserId": 229,
"scheduledAt": "2026-05-05T11:13:22.194Z",
"status": "completed",
"notes": "Terminatio consequatur curvo nostrum similique claudeo decor.",
"createdAt": "2026-05-10T17:57:35.242Z"
}