showings #20
- listingId
- House in South Maribelton · South Maribelton
- prospectUserId
-
Sheridan Turcotte @sheridan.turcotte
- scheduledAt
- status
- completed
- notes
- Demonstro vilitas ocer absconditus spes caput hic.
- createdAt
Overview
showings / #20
#20
#20
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/20" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/20" ); 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/20"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/20"
)
showing = res.json() Response
{
"id": 20,
"listingId": 6,
"prospectUserId": 153,
"scheduledAt": "2026-02-02T05:07:05.013Z",
"status": "completed",
"notes": "Demonstro vilitas ocer absconditus spes caput hic.",
"createdAt": "2026-01-24T01:29:35.952Z"
}