showings #356
- listingId
- Land in Killeen · Killeen
- prospectUserId
-
Charity Crona @charity.crona12
- scheduledAt
- status
- scheduled
- notes
- Teneo suffoco spes.
- createdAt
Overview
showings / #356
#356
#356
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/356" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/356" ); 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/356"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/356"
)
showing = res.json() Response
{
"id": 356,
"listingId": 131,
"prospectUserId": 100,
"scheduledAt": "2025-12-14T09:34:54.437Z",
"status": "scheduled",
"notes": "Teneo suffoco spes.",
"createdAt": "2025-12-09T08:20:00.369Z"
}