showings #71
- listingId
- House in Quitzoncester · Quitzoncester
- prospectUserId
-
Jaycee Erdman @jaycee_erdman96
- scheduledAt
- status
- scheduled
- notes
- Iste ambitus perspiciatis adamo.
- createdAt
Overview
showings / #71
#71
#71
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/71" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/71" ); 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/71"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/71"
)
showing = res.json() Response
{
"id": 71,
"listingId": 23,
"prospectUserId": 10,
"scheduledAt": "2026-05-18T08:48:18.138Z",
"status": "scheduled",
"notes": "Iste ambitus perspiciatis adamo.",
"createdAt": "2026-05-03T18:36:21.656Z"
}