showings #287
- listingId
- Land in New Jarrellcester · New Jarrellcester
- prospectUserId
-
Mara Johnson @mara.johnson17
- scheduledAt
- status
- scheduled
- notes
- Clementia templum sol vos inventore contego paulatim deprimo eius.
- createdAt
Overview
showings / #287
#287
#287
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/287" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/287" ); 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/287"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/287"
)
showing = res.json() Response
{
"id": 287,
"listingId": 107,
"prospectUserId": 12,
"scheduledAt": "2025-08-14T11:58:52.864Z",
"status": "scheduled",
"notes": "Clementia templum sol vos inventore contego paulatim deprimo eius.",
"createdAt": "2025-08-19T13:29:26.078Z"
}