showings #328
- listingId
- Apartment in Lake Price · Lake Price
- prospectUserId
-
Matilde Beahan @matilde_beahan
- scheduledAt
- status
- scheduled
- notes
- Aqua peior thalassinus illum accusantium supra depereo crux illo.
- createdAt
Overview
showings / #328
#328
#328
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/328" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/328" ); 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/328"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/328"
)
showing = res.json() Response
{
"id": 328,
"listingId": 121,
"prospectUserId": 96,
"scheduledAt": "2025-09-23T13:43:24.064Z",
"status": "scheduled",
"notes": "Aqua peior thalassinus illum accusantium supra depereo crux illo.",
"createdAt": "2025-09-14T05:32:17.985Z"
}