showings #255
- listingId
- Condo in Weissnatworth · Weissnatworth
- prospectUserId
-
Dwight Dicki-Medhurst @dwight.dicki-medhurst69
- scheduledAt
- status
- scheduled
- notes
- Sui conventus caecus utilis peior tubineus.
- createdAt
Overview
showings / #255
#255
#255
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/255" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/255" ); 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/255"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/255"
)
showing = res.json() Response
{
"id": 255,
"listingId": 96,
"prospectUserId": 35,
"scheduledAt": "2025-03-29T02:07:45.509Z",
"status": "scheduled",
"notes": "Sui conventus caecus utilis peior tubineus.",
"createdAt": "2025-04-02T19:24:30.699Z"
}