showings #425
- listingId
- House in Plantation · Plantation
- prospectUserId
-
Talon Turner @talon.turner59
- scheduledAt
- status
- scheduled
- notes
- Cunctatio decens versus depulso.
- createdAt
Overview
showings / #425
#425
#425
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/425" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/425" ); 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/425"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/425"
)
showing = res.json() Response
{
"id": 425,
"listingId": 159,
"prospectUserId": 166,
"scheduledAt": "2025-07-22T06:56:24.307Z",
"status": "scheduled",
"notes": "Cunctatio decens versus depulso.",
"createdAt": "2025-07-01T21:12:05.104Z"
}