showings #158
- listingId
- Condo in Lake Vita · Lake Vita
- prospectUserId
-
Marta Harvey @marta.harvey68
- scheduledAt
- status
- scheduled
- notes
- Caput deorsum et spectaculum.
- createdAt
Overview
showings / #158
#158
#158
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/158" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/158" ); 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/158"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/158"
)
showing = res.json() Response
{
"id": 158,
"listingId": 58,
"prospectUserId": 112,
"scheduledAt": "2026-05-29T03:00:59.788Z",
"status": "scheduled",
"notes": "Caput deorsum et spectaculum.",
"createdAt": "2026-05-18T17:40:35.192Z"
}