showings #201
- listingId
- Condo in West Jaquelineport · West Jaquelineport
- prospectUserId
-
Merl Jenkins @merl.jenkins6
- scheduledAt
- status
- cancelled
- notes
- Velit earum laboriosam optio.
- createdAt
Overview
showings / #201
#201
#201
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/201" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/201" ); 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/201"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/201"
)
showing = res.json() Response
{
"id": 201,
"listingId": 75,
"prospectUserId": 60,
"scheduledAt": "2026-02-18T02:16:57.934Z",
"status": "cancelled",
"notes": "Velit earum laboriosam optio.",
"createdAt": "2026-02-13T02:26:29.625Z"
}