showings #261
- listingId
- Townhouse in Baileymouth · Baileymouth
- prospectUserId
-
Elva Roberts @elva.roberts48
- scheduledAt
- status
- scheduled
- notes
- Pectus subito capillus.
- createdAt
Overview
showings / #261
#261
#261
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/261" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/261" ); 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/261"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/261"
)
showing = res.json() Response
{
"id": 261,
"listingId": 98,
"prospectUserId": 107,
"scheduledAt": "2026-06-08T04:14:32.110Z",
"status": "scheduled",
"notes": "Pectus subito capillus.",
"createdAt": "2026-05-16T14:30:15.967Z"
}