showings #174
- listingId
- House in West Lemuel · West Lemuel
- prospectUserId
-
Rickie Sporer @rickie.sporer50
- scheduledAt
- status
- scheduled
- notes
- Cohibeo arbitro umerus trado abbas tantillus ea anser.
- createdAt
Overview
showings / #174
#174
#174
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/174" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/174" ); 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/174"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/174"
)
showing = res.json() Response
{
"id": 174,
"listingId": 63,
"prospectUserId": 149,
"scheduledAt": "2025-10-03T06:03:38.063Z",
"status": "scheduled",
"notes": "Cohibeo arbitro umerus trado abbas tantillus ea anser.",
"createdAt": "2025-09-30T18:39:46.298Z"
}