showings #147
- listingId
- House in Lake Guillermo · Lake Guillermo
- prospectUserId
-
Emilia Cummerata @emilia_cummerata
- scheduledAt
- status
- completed
- notes
- Sunt pectus vorago.
- createdAt
Overview
showings / #147
#147
#147
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/147" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/147" ); 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/147"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/147"
)
showing = res.json() Response
{
"id": 147,
"listingId": 55,
"prospectUserId": 238,
"scheduledAt": "2026-03-25T16:56:35.974Z",
"status": "completed",
"notes": "Sunt pectus vorago.",
"createdAt": "2026-03-31T10:06:10.207Z"
}