showings #93
- listingId
- House in Laredo · Laredo
- prospectUserId
-
Ruben Terry @ruben.terry
- scheduledAt
- status
- completed
- notes
- Conduco deinde ut succurro vacuus deorsum.
- createdAt
Overview
showings / #93
#93
#93
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/93" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/93" ); 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/93"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/93"
)
showing = res.json() Response
{
"id": 93,
"listingId": 33,
"prospectUserId": 91,
"scheduledAt": "2025-08-27T17:13:56.474Z",
"status": "completed",
"notes": "Conduco deinde ut succurro vacuus deorsum.",
"createdAt": "2025-08-03T21:52:12.391Z"
}