showings #103
- listingId
- House in East Deion · East Deion
- prospectUserId
-
Green Kozey @green_kozey22
- scheduledAt
- status
- completed
- notes
- Cum denego tero exercitationem terga odit.
- createdAt
Overview
showings / #103
#103
#103
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/103" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/103" ); 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/103"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/103"
)
showing = res.json() Response
{
"id": 103,
"listingId": 38,
"prospectUserId": 49,
"scheduledAt": "2026-03-16T02:38:13.933Z",
"status": "completed",
"notes": "Cum denego tero exercitationem terga odit.",
"createdAt": "2026-02-18T21:13:29.135Z"
}