showings #205
- listingId
- Condo in Billings · Billings
- prospectUserId
-
Simeon Robel @simeon_robel12
- scheduledAt
- status
- completed
- notes
- Cui aperiam verecundia antiquus amita.
- createdAt
Overview
showings / #205
#205
#205
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/205" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/205" ); 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/205"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/205"
)
showing = res.json() Response
{
"id": 205,
"listingId": 76,
"prospectUserId": 55,
"scheduledAt": "2025-04-09T08:02:44.436Z",
"status": "completed",
"notes": "Cui aperiam verecundia antiquus amita.",
"createdAt": "2025-03-24T05:04:20.218Z"
}