showings #157
- listingId
- Condo in Lake Vita · Lake Vita
- prospectUserId
-
Camron O'Conner @camron.oconner54
- scheduledAt
- status
- completed
- notes
- Trepide reprehenderit turba sumo.
- createdAt
Overview
showings / #157
#157
#157
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/157" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/157" ); 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/157"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/157"
)
showing = res.json() Response
{
"id": 157,
"listingId": 58,
"prospectUserId": 94,
"scheduledAt": "2026-05-24T00:37:50.022Z",
"status": "completed",
"notes": "Trepide reprehenderit turba sumo.",
"createdAt": "2026-05-05T16:35:28.411Z"
}