showings #90
- listingId
- Apartment in Gloverstad · Gloverstad
- prospectUserId
-
Jonas Rath @jonas.rath
- scheduledAt
- status
- no_show
- notes
- Aetas tam vehemens soluta derideo demitto coaegresco.
- createdAt
Overview
showings / #90
#90
#90
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/90" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/90" ); 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/90"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/90"
)
showing = res.json() Response
{
"id": 90,
"listingId": 31,
"prospectUserId": 138,
"scheduledAt": "2026-06-20T01:46:33.393Z",
"status": "no_show",
"notes": "Aetas tam vehemens soluta derideo demitto coaegresco.",
"createdAt": "2026-05-21T12:45:18.798Z"
}