showings #284
- listingId
- House in Euclid · Euclid
- prospectUserId
-
Berniece Medhurst @berniece_medhurst
- scheduledAt
- status
- scheduled
- notes
- Damno statim aequus minus iste adflicto cupio degero adficio temporibus.
- createdAt
Overview
showings / #284
#284
#284
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/284" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/284" ); 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/284"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/284"
)
showing = res.json() Response
{
"id": 284,
"listingId": 106,
"prospectUserId": 77,
"scheduledAt": "2025-07-13T22:17:06.380Z",
"status": "scheduled",
"notes": "Damno statim aequus minus iste adflicto cupio degero adficio temporibus.",
"createdAt": "2025-07-20T10:00:38.745Z"
}