showings #207
- listingId
- Condo in Billings · Billings
- prospectUserId
-
April Kihn @april.kihn55
- scheduledAt
- status
- completed
- notes
- Charisma degusto quidem vitium credo subvenio admiratio vomer avarus adamo.
- createdAt
Overview
showings / #207
#207
#207
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/207" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/207" ); 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/207"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/207"
)
showing = res.json() Response
{
"id": 207,
"listingId": 76,
"prospectUserId": 137,
"scheduledAt": "2025-07-15T20:17:47.397Z",
"status": "completed",
"notes": "Charisma degusto quidem vitium credo subvenio admiratio vomer avarus adamo.",
"createdAt": "2025-07-09T22:47:23.873Z"
}