showings #97
- listingId
- House in Perris · Perris
- prospectUserId
-
Alvina Koch @alvina.koch8
- scheduledAt
- status
- no_show
- notes
- Arca calco cervus error vergo ago.
- createdAt
Overview
showings / #97
#97
#97
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/97" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/97" ); 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/97"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/97"
)
showing = res.json() Response
{
"id": 97,
"listingId": 34,
"prospectUserId": 20,
"scheduledAt": "2026-05-13T18:43:24.691Z",
"status": "no_show",
"notes": "Arca calco cervus error vergo ago.",
"createdAt": "2026-05-06T22:35:39.375Z"
}