showings #116
- listingId
- House in West Janet · West Janet
- prospectUserId
-
Ruben Terry @ruben.terry
- scheduledAt
- status
- scheduled
- notes
- Tui iste adaugeo capitulus.
- createdAt
Overview
showings / #116
#116
#116
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/116" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/116" ); 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/116"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/116"
)
showing = res.json() Response
{
"id": 116,
"listingId": 43,
"prospectUserId": 91,
"scheduledAt": "2026-05-18T04:53:55.903Z",
"status": "scheduled",
"notes": "Tui iste adaugeo capitulus.",
"createdAt": "2026-05-14T19:32:40.359Z"
}