showings
showings
Page 3 of 10.
- listingId
- Commercial Space in New Berniceborough · New Berniceborough
- prospectUserId
- 163
- scheduledAt
- status
- completed
- notes
- Corporis aperiam cenaculum auxilium cupressus tactus adsum.
- createdAt
- listingId
- Commercial Space in Lake Charles · Lake Charles
- prospectUserId
- 199
- scheduledAt
- status
- scheduled
- notes
- Arx vaco cunae dens adamo demum.
- createdAt
- listingId
- Commercial Space in Lake Charles · Lake Charles
- prospectUserId
- 83
- scheduledAt
- status
- scheduled
- notes
- Beatae magnam desidero tondeo timor verus talio tubineus alo doloribus.
- createdAt
- listingId
- House in Fort Rogers · Fort Rogers
- prospectUserId
- 228
- scheduledAt
- status
- no_show
- notes
- Subito causa velut labore sollicito carbo maiores cras tamdiu supplanto.
- createdAt
- listingId
- House in Fort Rogers · Fort Rogers
- prospectUserId
- 15
- scheduledAt
- status
- completed
- notes
- Correptius nihil copia tamisium speciosus tactus incidunt quia consequuntur thalassinus.
- createdAt
- listingId
- House in Tyshawnland · Tyshawnland
- prospectUserId
- 175
- scheduledAt
- status
- completed
- notes
- Absorbeo careo ver antepono terra soluta.
- 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": 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",
"next": "/api/v1/showings?page=4",
"prev": "/api/v1/showings?page=2"
}
}