showings
showings
Page 16 of 21.
Overview
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/showings?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/showings";
const res = await fetch(
"https://example-data.com/api/v1/showings?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Showing>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 361,
"listingId": 133,
"prospectUserId": 146,
"scheduledAt": "2025-08-08T21:32:13.054Z",
"status": "completed",
"notes": "Sumptus temptatio numquam agnosco quos.",
"createdAt": "2025-07-26T06:57:40.831Z"
},
{
"id": 362,
"listingId": 133,
"prospectUserId": 50,
"scheduledAt": "2026-05-27T03:47:16.766Z",
"status": "scheduled",
"notes": "Dedico aureus tero aestivus certe umbra.",
"createdAt": "2026-05-13T02:30:14.452Z"
},
{
"id": 363,
"listingId": 133,
"prospectUserId": 245,
"scheduledAt": "2025-12-21T19:22:34.905Z",
"status": "scheduled",
"notes": "Peior defessus aliquid spargo.",
"createdAt": "2025-12-22T17:02:09.921Z"
}
],
"meta": {
"page": 16,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=16&limit=24",
"first": "/api/v1/showings?page=1&limit=24",
"last": "/api/v1/showings?page=21&limit=24",
"next": "/api/v1/showings?page=17&limit=24",
"prev": "/api/v1/showings?page=15&limit=24"
}
}