showings #70
- listingId
- Apartment in Sengerberg · Sengerberg
- prospectUserId
-
Santa Corwin @santa.corwin59
- scheduledAt
- status
- cancelled
- notes
- Depopulo amiculum via aer accedo summa vigor.
- createdAt
Overview
showings / #70
#70
#70
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/70" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/70" ); 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/70"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/70"
)
showing = res.json() Response
{
"id": 70,
"listingId": 22,
"prospectUserId": 247,
"scheduledAt": "2025-04-16T17:53:55.120Z",
"status": "cancelled",
"notes": "Depopulo amiculum via aer accedo summa vigor.",
"createdAt": "2025-03-30T08:33:29.148Z"
}