showings #17
- listingId
- Condo in Lake Willyport · Lake Willyport
- prospectUserId
-
Myrl Pollich @myrl.pollich
- scheduledAt
- status
- completed
- notes
- Super velit crur adsidue.
- createdAt
Overview
showings / #17
#17
#17
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/17" ); 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/17"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/17"
)
showing = res.json() Response
{
"id": 17,
"listingId": 5,
"prospectUserId": 90,
"scheduledAt": "2026-03-16T13:33:44.237Z",
"status": "completed",
"notes": "Super velit crur adsidue.",
"createdAt": "2026-02-22T04:42:39.462Z"
}