showings #370
- listingId
- Apartment in Westhaven · Westhaven
- prospectUserId
-
Mckenna Hegmann-Price @mckenna.hegmann-price77
- scheduledAt
- status
- cancelled
- notes
- Virtus damno bos commodo vigor reiciendis.
- createdAt
Overview
showings / #370
#370
#370
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/370" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/370" ); 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/370"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/370"
)
showing = res.json() Response
{
"id": 370,
"listingId": 136,
"prospectUserId": 62,
"scheduledAt": "2026-06-10T01:55:30.761Z",
"status": "cancelled",
"notes": "Virtus damno bos commodo vigor reiciendis.",
"createdAt": "2026-05-16T16:40:44.450Z"
}