showings
showings
Page 9 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": 193,
"listingId": 71,
"prospectUserId": 12,
"scheduledAt": "2026-04-20T11:39:08.349Z",
"status": "cancelled",
"notes": "Neque nesciunt usque angulus provident tres videlicet adsidue.",
"createdAt": "2026-04-07T17:33:33.337Z"
},
{
"id": 194,
"listingId": 72,
"prospectUserId": 187,
"scheduledAt": "2025-09-28T18:04:02.954Z",
"status": "cancelled",
"notes": "Pax crapula audentia tollo thymum crur tergum aiunt approbo quisquam.",
"createdAt": "2025-09-24T20:23:10.619Z"
},
{
"id": 195,
"listingId": 73,
"prospectUserId": 43,
"scheduledAt": "2025-11-19T19:46:05.386Z",
"status": "completed",
"notes": "Dens sophismata volaticus vigilo aequitas ea comparo tepidus demum.",
"createdAt": "2025-11-13T22:01:10.513Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=9&limit=24",
"first": "/api/v1/showings?page=1&limit=24",
"last": "/api/v1/showings?page=21&limit=24",
"next": "/api/v1/showings?page=10&limit=24",
"prev": "/api/v1/showings?page=8&limit=24"
}
}