showings #473
- listingId
- Condo in Lake Kristinashire · Lake Kristinashire
- prospectUserId
-
Whitney O'Reilly @whitney.oreilly
- scheduledAt
- status
- completed
- notes
- Virga comedo spargo absum cerno vaco bonus viduo subito.
- createdAt
Overview
showings / #473
#473
#473
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/473" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/473" ); 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/473"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/473"
)
showing = res.json() Response
{
"id": 473,
"listingId": 179,
"prospectUserId": 99,
"scheduledAt": "2025-05-17T23:31:47.423Z",
"status": "completed",
"notes": "Virga comedo spargo absum cerno vaco bonus viduo subito.",
"createdAt": "2025-04-24T16:18:15.468Z"
}