showings
showings
Page 9 of 10.
- showings/193
- showings/194
- showings/195
- showings/196
- showings/197
- showings/198
- showings/199
- showings/200
- showings/201
- showings/202
- showings/203
- showings/204
- showings/205
- showings/206
- showings/207
- showings/208
- showings/209
- showings/210
- showings/211
- showings/212
- showings/213
- showings/214
- showings/215
- showings/216
- listingId
- House in Henderson · Henderson
- prospectUserId
- 12
- scheduledAt
- status
- cancelled
- notes
- Neque nesciunt usque angulus provident tres videlicet adsidue.
- createdAt
- listingId
- Apartment in Sipesfield · Sipesfield
- prospectUserId
- 187
- scheduledAt
- status
- cancelled
- notes
- Pax crapula audentia tollo thymum crur tergum aiunt approbo quisquam.
- createdAt
- listingId
- Apartment in Port Marley · Port Marley
- prospectUserId
- 43
- scheduledAt
- status
- completed
- notes
- Dens sophismata volaticus vigilo aequitas ea comparo tepidus demum.
- createdAt
- listingId
- Apartment in Port Marley · Port Marley
- prospectUserId
- 110
- scheduledAt
- status
- completed
- notes
- Stillicidium patruus delinquo auctus supellex spoliatio ab.
- createdAt
- listingId
- Apartment in Port Marley · Port Marley
- prospectUserId
- 220
- scheduledAt
- status
- no_show
- notes
- Sono decet confero articulus deludo ultio amicitia tabesco atrox.
- createdAt
- listingId
- Townhouse in Lake Cheyenne · Lake Cheyenne
- prospectUserId
- 107
- scheduledAt
- status
- completed
- notes
- Acquiro eveniet sollicito adfectus absens voluptas tepesco inventore temeritas.
- 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": 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",
"next": "/api/v1/showings?page=10",
"prev": "/api/v1/showings?page=8"
}
}