showings #327
- listingId
- Apartment in Lake Price · Lake Price
- prospectUserId
-
Adan Weber @adan.weber61
- scheduledAt
- status
- scheduled
- notes
- Sol itaque adsum depulso canis summa assentator contra.
- createdAt
Overview
showings / #327
#327
#327
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/327" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/327" ); 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/327"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/327"
)
showing = res.json() Response
{
"id": 327,
"listingId": 121,
"prospectUserId": 155,
"scheduledAt": "2026-02-21T21:19:03.477Z",
"status": "scheduled",
"notes": "Sol itaque adsum depulso canis summa assentator contra.",
"createdAt": "2026-02-17T04:08:32.066Z"
}