showings #253
- listingId
- Condo in Weissnatworth · Weissnatworth
- prospectUserId
-
Vida Kunde-Koepp @vida_kunde-koepp95
- scheduledAt
- status
- completed
- notes
- Arbor aegre absorbeo.
- createdAt
Overview
showings / #253
#253
#253
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/253" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/253" ); 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/253"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/253"
)
showing = res.json() Response
{
"id": 253,
"listingId": 96,
"prospectUserId": 109,
"scheduledAt": "2026-02-08T21:18:29.722Z",
"status": "completed",
"notes": "Arbor aegre absorbeo.",
"createdAt": "2026-02-08T22:03:50.277Z"
}