showings
showings
Page 14 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": 313,
"listingId": 116,
"prospectUserId": 185,
"scheduledAt": "2026-01-21T13:48:16.248Z",
"status": "completed",
"notes": "Delectatio demulceo ea ver atque apostolus tibi.",
"createdAt": "2026-01-20T01:54:43.590Z"
},
{
"id": 314,
"listingId": 116,
"prospectUserId": 226,
"scheduledAt": "2026-04-17T21:19:00.118Z",
"status": "completed",
"notes": "Villa copia amet claro ara tepidus tactus.",
"createdAt": "2026-04-02T11:51:40.575Z"
},
{
"id": 315,
"listingId": 116,
"prospectUserId": 92,
"scheduledAt": "2026-03-28T17:08:30.788Z",
"status": "completed",
"notes": "Quidem bestia infit suscipio.",
"createdAt": "2026-02-28T02:04:20.458Z"
}
],
"meta": {
"page": 14,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=14&limit=24",
"first": "/api/v1/showings?page=1&limit=24",
"last": "/api/v1/showings?page=21&limit=24",
"next": "/api/v1/showings?page=15&limit=24",
"prev": "/api/v1/showings?page=13&limit=24"
}
}