showings #454
- listingId
- Condo in Great Falls · Great Falls
- prospectUserId
-
Ressie Howell-Hodkiewicz @ressie_howell-hodkiewicz35
- scheduledAt
- status
- completed
- notes
- Spiculum vulgaris color adinventitias.
- createdAt
Overview
showings / #454
#454
#454
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/454" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/454" ); 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/454"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/454"
)
showing = res.json() Response
{
"id": 454,
"listingId": 172,
"prospectUserId": 214,
"scheduledAt": "2026-05-15T11:19:04.503Z",
"status": "completed",
"notes": "Spiculum vulgaris color adinventitias.",
"createdAt": "2026-05-01T10:25:22.712Z"
}