showings
showings
Page 3 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": 49,
"listingId": 15,
"prospectUserId": 163,
"scheduledAt": "2025-09-27T09:17:16.516Z",
"status": "completed",
"notes": "Corporis aperiam cenaculum auxilium cupressus tactus adsum.",
"createdAt": "2025-09-06T18:18:14.073Z"
},
{
"id": 50,
"listingId": 16,
"prospectUserId": 199,
"scheduledAt": "2025-11-06T18:58:36.929Z",
"status": "scheduled",
"notes": "Arx vaco cunae dens adamo demum.",
"createdAt": "2025-10-25T13:09:39.412Z"
},
{
"id": 51,
"listingId": 16,
"prospectUserId": 83,
"scheduledAt": "2025-10-19T13:58:07.774Z",
"status": "scheduled",
"notes": "Beatae magnam desidero tondeo timor verus talio tubineus alo doloribus.",
"createdAt": "2025-09-21T22:38:55.677Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=3&limit=24",
"first": "/api/v1/showings?page=1&limit=24",
"last": "/api/v1/showings?page=21&limit=24",
"next": "/api/v1/showings?page=4&limit=24",
"prev": "/api/v1/showings?page=2&limit=24"
}
}