showings #461
- listingId
- Townhouse in Fort Dan · Fort Dan
- prospectUserId
-
Marta Harvey @marta.harvey68
- scheduledAt
- status
- cancelled
- notes
- Aestus corona deinde.
- createdAt
Overview
showings / #461
#461
#461
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/461" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/461" ); 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/461"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/461"
)
showing = res.json() Response
{
"id": 461,
"listingId": 175,
"prospectUserId": 112,
"scheduledAt": "2025-02-04T12:47:06.062Z",
"status": "cancelled",
"notes": "Aestus corona deinde.",
"createdAt": "2025-01-25T12:33:51.454Z"
}