showings #368
- listingId
- Condo in Fort Evieshire · Fort Evieshire
- prospectUserId
-
Telly Sanford @telly.sanford
- scheduledAt
- status
- completed
- notes
- Abutor utique arbustum crapula neque chirographum tristis sui capto.
- createdAt
Overview
showings / #368
#368
#368
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/368" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/368" ); 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/368"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/368"
)
showing = res.json() Response
{
"id": 368,
"listingId": 135,
"prospectUserId": 123,
"scheduledAt": "2025-06-25T13:48:42.231Z",
"status": "completed",
"notes": "Abutor utique arbustum crapula neque chirographum tristis sui capto.",
"createdAt": "2025-06-06T12:39:48.045Z"
}