showings #458
- listingId
- Condo in Zboncakstad · Zboncakstad
- prospectUserId
-
Talon Turner @talon.turner59
- scheduledAt
- status
- no_show
- notes
- Urbanus concedo attero valens concedo.
- createdAt
Overview
showings / #458
#458
#458
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/458" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/458" ); 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/458"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/458"
)
showing = res.json() Response
{
"id": 458,
"listingId": 173,
"prospectUserId": 166,
"scheduledAt": "2025-06-03T00:07:24.799Z",
"status": "no_show",
"notes": "Urbanus concedo attero valens concedo.",
"createdAt": "2025-06-02T17:13:47.675Z"
}