showings #168
- listingId
- Townhouse in Jettburgh · Jettburgh
- prospectUserId
-
Mckenna Hegmann-Price @mckenna.hegmann-price77
- scheduledAt
- status
- no_show
- notes
- Talio eaque valde umquam tres.
- createdAt
Overview
showings / #168
#168
#168
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/168" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/168" ); 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/168"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/168"
)
showing = res.json() Response
{
"id": 168,
"listingId": 62,
"prospectUserId": 62,
"scheduledAt": "2025-11-13T09:15:53.616Z",
"status": "no_show",
"notes": "Talio eaque valde umquam tres.",
"createdAt": "2025-11-07T07:04:55.362Z"
}