showings
showings
Page 8 of 10.
- showings/169
- showings/170
- showings/171
- showings/172
- showings/173
- showings/174
- showings/175
- showings/176
- showings/177
- showings/178
- showings/179
- showings/180
- showings/181
- showings/182
- showings/183
- showings/184
- showings/185
- showings/186
- showings/187
- showings/188
- showings/189
- showings/190
- showings/191
- showings/192
- listingId
- Townhouse in Jettburgh · Jettburgh
- prospectUserId
- 244
- scheduledAt
- status
- scheduled
- notes
- Conicio synagoga suffoco ago vehemens curatio tamdiu tyrannus torrens aegrus.
- createdAt
- listingId
- Townhouse in Jettburgh · Jettburgh
- prospectUserId
- 224
- scheduledAt
- status
- completed
- notes
- Tumultus terebro sequi vigilo itaque somnus.
- createdAt
- listingId
- House in West Lemuel · West Lemuel
- prospectUserId
- 72
- scheduledAt
- status
- cancelled
- notes
- Vere tui adipisci adiuvo tam admiratio.
- createdAt
- listingId
- House in West Lemuel · West Lemuel
- prospectUserId
- 242
- scheduledAt
- status
- completed
- notes
- Tabernus aspernatur alioqui apparatus coniecto utpote venio antea eum.
- createdAt
- listingId
- House in West Lemuel · West Lemuel
- prospectUserId
- 244
- scheduledAt
- status
- cancelled
- notes
- Assumenda usque vorax voro villa.
- createdAt
- listingId
- House in West Lemuel · West Lemuel
- prospectUserId
- 149
- scheduledAt
- status
- scheduled
- notes
- Cohibeo arbitro umerus trado abbas tantillus ea anser.
- 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": 169,
"listingId": 62,
"prospectUserId": 244,
"scheduledAt": "2026-05-11T00:38:47.480Z",
"status": "scheduled",
"notes": "Conicio synagoga suffoco ago vehemens curatio tamdiu tyrannus torrens aegrus.",
"createdAt": "2026-05-10T21:49:50.298Z"
},
{
"id": 170,
"listingId": 62,
"prospectUserId": 224,
"scheduledAt": "2025-10-08T11:28:03.218Z",
"status": "completed",
"notes": "Tumultus terebro sequi vigilo itaque somnus.",
"createdAt": "2025-09-25T03:35:26.729Z"
},
{
"id": 171,
"listingId": 63,
"prospectUserId": 72,
"scheduledAt": "2025-11-25T12:21:02.176Z",
"status": "cancelled",
"notes": "Vere tui adipisci adiuvo tam admiratio.",
"createdAt": "2025-11-29T12:15:35.579Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=8",
"next": "/api/v1/showings?page=9",
"prev": "/api/v1/showings?page=7"
}
}