showings #148
- listingId
- Condo in Ramonport · Ramonport
- prospectUserId
-
Telly Sanford @telly.sanford
- scheduledAt
- status
- cancelled
- notes
- Tamdiu adhuc benigne.
- createdAt
Overview
showings / #148
#148
#148
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/148" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/148" ); 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/148"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/148"
)
showing = res.json() Response
{
"id": 148,
"listingId": 56,
"prospectUserId": 123,
"scheduledAt": "2025-01-18T21:13:13.518Z",
"status": "cancelled",
"notes": "Tamdiu adhuc benigne.",
"createdAt": "2025-01-06T06:51:30.146Z"
}