showings
showings
Page 7 of 10.
- showings/145
- showings/146
- showings/147
- showings/148
- showings/149
- showings/150
- showings/151
- showings/152
- showings/153
- showings/154
- showings/155
- showings/156
- showings/157
- showings/158
- showings/159
- showings/160
- showings/161
- showings/162
- showings/163
- showings/164
- showings/165
- showings/166
- showings/167
- showings/168
- listingId
- House in Lake Guillermo · Lake Guillermo
- prospectUserId
- 80
- scheduledAt
- status
- no_show
- notes
- Doloremque error villa compono arma cena terebro.
- createdAt
- listingId
- House in Lake Guillermo · Lake Guillermo
- prospectUserId
- 226
- scheduledAt
- status
- cancelled
- notes
- Ocer quos audentia.
- createdAt
- listingId
- House in Lake Guillermo · Lake Guillermo
- prospectUserId
- 238
- scheduledAt
- status
- completed
- notes
- Sunt pectus vorago.
- createdAt
- listingId
- Condo in Ramonport · Ramonport
- prospectUserId
- 123
- scheduledAt
- status
- cancelled
- notes
- Tamdiu adhuc benigne.
- createdAt
- listingId
- Condo in Ramonport · Ramonport
- prospectUserId
- 191
- scheduledAt
- status
- completed
- notes
- Comminor confugo benevolentia absque usus.
- createdAt
- listingId
- Condo in Ramonport · Ramonport
- prospectUserId
- 148
- scheduledAt
- status
- completed
- notes
- Thema auditor video congregatio amor.
- 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": 145,
"listingId": 55,
"prospectUserId": 80,
"scheduledAt": "2026-04-04T15:33:03.993Z",
"status": "no_show",
"notes": "Doloremque error villa compono arma cena terebro.",
"createdAt": "2026-03-31T10:12:33.166Z"
},
{
"id": 146,
"listingId": 55,
"prospectUserId": 226,
"scheduledAt": "2026-02-27T12:24:51.430Z",
"status": "cancelled",
"notes": "Ocer quos audentia.",
"createdAt": "2026-02-15T04:09:36.978Z"
},
{
"id": 147,
"listingId": 55,
"prospectUserId": 238,
"scheduledAt": "2026-03-25T16:56:35.974Z",
"status": "completed",
"notes": "Sunt pectus vorago.",
"createdAt": "2026-03-31T10:06:10.207Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=7",
"next": "/api/v1/showings?page=8",
"prev": "/api/v1/showings?page=6"
}
}