showings #10
- listingId
- Land in New Seamus · New Seamus
- prospectUserId
-
Abdul Rau @abdul.rau
- scheduledAt
- status
- scheduled
- notes
- Calamitas coaegresco trepide trans vitium cupressus clam venio facere.
- createdAt
Overview
showings / #10
#10
#10
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/10" ); 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/10"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/10"
)
showing = res.json() Response
{
"id": 10,
"listingId": 4,
"prospectUserId": 108,
"scheduledAt": "2026-05-13T06:34:14.154Z",
"status": "scheduled",
"notes": "Calamitas coaegresco trepide trans vitium cupressus clam venio facere.",
"createdAt": "2026-04-19T12:16:19.550Z"
}