showings #304
- listingId
- Apartment in Duluth · Duluth
- prospectUserId
-
Hortense Cruickshank @hortense.cruickshank65
- scheduledAt
- status
- no_show
- notes
- Totus conspergo assentator compello aliqua arma arbustum carbo.
- createdAt
Overview
showings / #304
#304
#304
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/304" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/304" ); 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/304"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/304"
)
showing = res.json() Response
{
"id": 304,
"listingId": 112,
"prospectUserId": 83,
"scheduledAt": "2026-03-13T16:24:21.514Z",
"status": "no_show",
"notes": "Totus conspergo assentator compello aliqua arma arbustum carbo.",
"createdAt": "2026-02-22T22:43:47.272Z"
}