showings
showings
Page 2 of 10.
- listingId
- Land in South Emmie · South Emmie
- prospectUserId
- 226
- scheduledAt
- status
- completed
- notes
- Constans cupiditate surculus textor dicta triumphus tempora facere.
- createdAt
- listingId
- Townhouse in Rapid City · Rapid City
- prospectUserId
- 65
- scheduledAt
- status
- completed
- notes
- Coadunatio venustas delego cupressus arguo capio.
- createdAt
- listingId
- Townhouse in Rapid City · Rapid City
- prospectUserId
- 95
- scheduledAt
- status
- scheduled
- notes
- Sulum ago adulescens agnitio curiositas talus vester adulatio.
- createdAt
- listingId
- Townhouse in Rapid City · Rapid City
- prospectUserId
- 218
- scheduledAt
- status
- scheduled
- notes
- Civis demoror audentia arca adipiscor.
- createdAt
- listingId
- House in Nickolasbury · Nickolasbury
- prospectUserId
- 196
- scheduledAt
- status
- scheduled
- notes
- Aspernatur tamquam tutis defaeco usus reprehenderit blandior.
- createdAt
- listingId
- House in Nickolasbury · Nickolasbury
- prospectUserId
- 164
- scheduledAt
- status
- no_show
- notes
- Totidem acsi concido caelestis.
- createdAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/showings?limit=25"const res = await fetch(
"https://example-data.com/api/v1/showings?limit=25"
);
const { data, meta } = await res.json();import type { Showing, ListEnvelope } from "https://example-data.com/types/showings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/showings?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Showing>;import requests
res = requests.get(
"https://example-data.com/api/v1/showings",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 25,
"listingId": 7,
"prospectUserId": 226,
"scheduledAt": "2026-05-19T13:27:28.764Z",
"status": "completed",
"notes": "Constans cupiditate surculus textor dicta triumphus tempora facere.",
"createdAt": "2026-05-11T10:47:25.318Z"
},
{
"id": 26,
"listingId": 8,
"prospectUserId": 65,
"scheduledAt": "2026-04-29T18:13:35.693Z",
"status": "completed",
"notes": "Coadunatio venustas delego cupressus arguo capio.",
"createdAt": "2026-04-12T05:33:50.211Z"
},
{
"id": 27,
"listingId": 8,
"prospectUserId": 95,
"scheduledAt": "2026-04-24T02:31:17.000Z",
"status": "scheduled",
"notes": "Sulum ago adulescens agnitio curiositas talus vester adulatio.",
"createdAt": "2026-04-25T07:37:47.285Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=2",
"next": "/api/v1/showings?page=3",
"prev": "/api/v1/showings?page=1"
}
}