showings
showings
Page 10 of 10.
- showings/217
- showings/218
- showings/219
- showings/220
- showings/221
- showings/222
- showings/223
- showings/224
- showings/225
- showings/226
- showings/227
- showings/228
- showings/229
- showings/230
- showings/231
- showings/232
- showings/233
- showings/234
- showings/235
- showings/236
- showings/237
- showings/238
- showings/239
- showings/240
- listingId
- House in Fort Randi · Fort Randi
- prospectUserId
- 71
- scheduledAt
- status
- scheduled
- notes
- Bellicus tempus rerum currus cotidie uredo.
- createdAt
- listingId
- House in Fort Randi · Fort Randi
- prospectUserId
- 48
- scheduledAt
- status
- no_show
- notes
- Sumo perspiciatis calcar cribro.
- createdAt
- listingId
- House in Philipside · Philipside
- prospectUserId
- 116
- scheduledAt
- status
- completed
- notes
- Turpis valens vix clibanus audio quibusdam tener suspendo ventus demo.
- createdAt
- listingId
- House in Philipside · Philipside
- prospectUserId
- 109
- scheduledAt
- status
- no_show
- notes
- Basium reprehenderit defetiscor temperantia ambitus tristis aut mollitia.
- createdAt
- listingId
- House in Philipside · Philipside
- prospectUserId
- 57
- scheduledAt
- status
- scheduled
- notes
- Cauda accedo cotidie capillus crudelis soluta assentator subseco.
- createdAt
- listingId
- House in Camarillo · Camarillo
- prospectUserId
- 105
- scheduledAt
- status
- completed
- notes
- Venustas caelestis cumque antiquus dolorum vereor tenus adicio creta tolero.
- 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": 217,
"listingId": 82,
"prospectUserId": 71,
"scheduledAt": "2026-04-15T18:47:15.284Z",
"status": "scheduled",
"notes": "Bellicus tempus rerum currus cotidie uredo.",
"createdAt": "2026-03-31T06:22:36.723Z"
},
{
"id": 218,
"listingId": 82,
"prospectUserId": 48,
"scheduledAt": "2026-05-06T21:27:56.353Z",
"status": "no_show",
"notes": "Sumo perspiciatis calcar cribro.",
"createdAt": "2026-04-17T13:01:14.105Z"
},
{
"id": 219,
"listingId": 83,
"prospectUserId": 116,
"scheduledAt": "2026-06-03T12:43:43.837Z",
"status": "completed",
"notes": "Turpis valens vix clibanus audio quibusdam tener suspendo ventus demo.",
"createdAt": "2026-05-10T01:44:14.429Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=10",
"next": "/api/v1/showings?page=11",
"prev": "/api/v1/showings?page=9"
}
}