showings #257
- listingId
- Apartment in Redding · Redding
- prospectUserId
-
Gwendolyn Wyman @gwendolyn.wyman87
- scheduledAt
- status
- no_show
- notes
- Velut ustulo apto patria careo caritas vitium delicate demitto.
- createdAt
Overview
showings / #257
#257
#257
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/257" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/257" ); 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/257"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/257"
)
showing = res.json() Response
{
"id": 257,
"listingId": 97,
"prospectUserId": 40,
"scheduledAt": "2025-12-02T20:44:39.437Z",
"status": "no_show",
"notes": "Velut ustulo apto patria careo caritas vitium delicate demitto.",
"createdAt": "2025-11-06T15:00:01.022Z"
}