showings #139
- listingId
- House in Albany · Albany
- prospectUserId
-
Webster Skiles @webster_skiles39
- scheduledAt
- status
- cancelled
- notes
- Curia claro nulla.
- createdAt
Overview
showings / #139
#139
#139
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/139" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/139" ); 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/139"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/139"
)
showing = res.json() Response
{
"id": 139,
"listingId": 52,
"prospectUserId": 5,
"scheduledAt": "2025-06-19T01:38:41.379Z",
"status": "cancelled",
"notes": "Curia claro nulla.",
"createdAt": "2025-06-24T02:33:02.027Z"
}