showings #319
- listingId
- Townhouse in Lake Emelyberg · Lake Emelyberg
- prospectUserId
-
Jolie Abernathy @jolie_abernathy33
- scheduledAt
- status
- scheduled
- notes
- Degusto tepidus sollers velociter torqueo videlicet.
- createdAt
Overview
showings / #319
#319
#319
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/319" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/319" ); 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/319"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/319"
)
showing = res.json() Response
{
"id": 319,
"listingId": 117,
"prospectUserId": 50,
"scheduledAt": "2025-12-21T21:50:30.099Z",
"status": "scheduled",
"notes": "Degusto tepidus sollers velociter torqueo videlicet.",
"createdAt": "2025-12-15T04:58:38.361Z"
}