showings #170
- listingId
- Townhouse in Jettburgh · Jettburgh
- prospectUserId
-
Simeon Heathcote @simeon_heathcote75
- scheduledAt
- status
- completed
- notes
- Tumultus terebro sequi vigilo itaque somnus.
- createdAt
Overview
showings / #170
#170
#170
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/170" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/170" ); 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/170"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/170"
)
showing = res.json() Response
{
"id": 170,
"listingId": 62,
"prospectUserId": 224,
"scheduledAt": "2025-10-08T11:28:03.218Z",
"status": "completed",
"notes": "Tumultus terebro sequi vigilo itaque somnus.",
"createdAt": "2025-09-25T03:35:26.729Z"
}