showings #200
- listingId
- Condo in West Jaquelineport · West Jaquelineport
- prospectUserId
-
Sandrine Osinski @sandrine.osinski
- scheduledAt
- status
- scheduled
- notes
- Hic auxilium torqueo alius thema civitas.
- createdAt
Overview
showings / #200
#200
#200
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/200" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/200" ); 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/200"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/200"
)
showing = res.json() Response
{
"id": 200,
"listingId": 75,
"prospectUserId": 157,
"scheduledAt": "2026-04-09T10:30:03.443Z",
"status": "scheduled",
"notes": "Hic auxilium torqueo alius thema civitas.",
"createdAt": "2026-03-23T12:31:09.801Z"
}