showings #283
- listingId
- Condo in Rutherfordside · Rutherfordside
- prospectUserId
-
Mara Johnson @mara.johnson17
- scheduledAt
- status
- scheduled
- notes
- Supra aliquam vitae stella adinventitias cupiditate vomer.
- createdAt
Overview
showings / #283
#283
#283
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/283" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/283" ); 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/283"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/283"
)
showing = res.json() Response
{
"id": 283,
"listingId": 105,
"prospectUserId": 12,
"scheduledAt": "2026-02-02T11:40:21.561Z",
"status": "scheduled",
"notes": "Supra aliquam vitae stella adinventitias cupiditate vomer.",
"createdAt": "2026-01-21T09:09:32.566Z"
}