showings #169
- listingId
- Townhouse in Jettburgh · Jettburgh
- prospectUserId
-
Charlene Kuhic @charlene_kuhic
- scheduledAt
- status
- scheduled
- notes
- Conicio synagoga suffoco ago vehemens curatio tamdiu tyrannus torrens aegrus.
- createdAt
Overview
showings / #169
#169
#169
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/169" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/169" ); 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/169"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/169"
)
showing = res.json() Response
{
"id": 169,
"listingId": 62,
"prospectUserId": 244,
"scheduledAt": "2026-05-11T00:38:47.480Z",
"status": "scheduled",
"notes": "Conicio synagoga suffoco ago vehemens curatio tamdiu tyrannus torrens aegrus.",
"createdAt": "2026-05-10T21:49:50.298Z"
}