showings #81
- listingId
- Apartment in Westminster · Westminster
- prospectUserId
-
Nikko Kuhlman @nikko_kuhlman
- scheduledAt
- status
- no_show
- notes
- Calcar auditor studio contigo suffoco summa textor solutio comes.
- createdAt
Overview
showings / #81
#81
#81
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/81" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/81" ); 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/81"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/81"
)
showing = res.json() Response
{
"id": 81,
"listingId": 28,
"prospectUserId": 122,
"scheduledAt": "2025-12-07T12:54:39.568Z",
"status": "no_show",
"notes": "Calcar auditor studio contigo suffoco summa textor solutio comes.",
"createdAt": "2025-12-03T17:42:02.639Z"
}