showings #332
- listingId
- Townhouse in Lake Imogenemouth · Lake Imogenemouth
- prospectUserId
-
Gerda Streich @gerda_streich
- scheduledAt
- status
- completed
- notes
- Laboriosam supellex clam vespillo tempore tondeo tepidus.
- createdAt
Overview
showings / #332
#332
#332
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/332" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/332" ); 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/332"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/332"
)
showing = res.json() Response
{
"id": 332,
"listingId": 122,
"prospectUserId": 126,
"scheduledAt": "2025-02-20T02:26:27.398Z",
"status": "completed",
"notes": "Laboriosam supellex clam vespillo tempore tondeo tepidus.",
"createdAt": "2025-02-08T03:05:57.538Z"
}