showings #52
- listingId
- House in Fort Rogers · Fort Rogers
- prospectUserId
-
Karlee MacGyver @karlee_macgyver
- scheduledAt
- status
- no_show
- notes
- Subito causa velut labore sollicito carbo maiores cras tamdiu supplanto.
- createdAt
Overview
showings / #52
#52
#52
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/52" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/52" ); 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/52"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/52"
)
showing = res.json() Response
{
"id": 52,
"listingId": 17,
"prospectUserId": 228,
"scheduledAt": "2026-05-14T10:39:09.825Z",
"status": "no_show",
"notes": "Subito causa velut labore sollicito carbo maiores cras tamdiu supplanto.",
"createdAt": "2026-05-19T20:05:40.287Z"
}