showings
showings
Page 6 of 10.
- showings/121
- showings/122
- showings/123
- showings/124
- showings/125
- showings/126
- showings/127
- showings/128
- showings/129
- showings/130
- showings/131
- showings/132
- showings/133
- showings/134
- showings/135
- showings/136
- showings/137
- showings/138
- showings/139
- showings/140
- showings/141
- showings/142
- showings/143
- showings/144
- listingId
- House in Hammesboro · Hammesboro
- prospectUserId
- 42
- scheduledAt
- status
- completed
- notes
- Calco civitas tergeo asperiores cruentus pel reiciendis sponte.
- createdAt
- listingId
- House in Johnson City · Johnson City
- prospectUserId
- 159
- scheduledAt
- status
- scheduled
- notes
- Canonicus eos atque quam tergiversatio nesciunt cruciamentum tener.
- createdAt
- listingId
- House in Johnson City · Johnson City
- prospectUserId
- 221
- scheduledAt
- status
- scheduled
- notes
- Tertius assumenda virgo volaticus blandior cumque dicta vitium.
- createdAt
- listingId
- House in Duluth · Duluth
- prospectUserId
- 198
- scheduledAt
- status
- completed
- notes
- Porro vito tergum sol votum vox urbs depopulo a thalassinus.
- createdAt
- listingId
- House in Duluth · Duluth
- prospectUserId
- 6
- scheduledAt
- status
- cancelled
- notes
- Acies derideo sed.
- createdAt
- listingId
- House in Duluth · Duluth
- prospectUserId
- 179
- scheduledAt
- status
- no_show
- notes
- Vere non arca vis arbitro.
- 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": 121,
"listingId": 44,
"prospectUserId": 42,
"scheduledAt": "2025-09-29T11:59:35.736Z",
"status": "completed",
"notes": "Calco civitas tergeo asperiores cruentus pel reiciendis sponte.",
"createdAt": "2025-10-02T13:30:28.834Z"
},
{
"id": 122,
"listingId": 45,
"prospectUserId": 159,
"scheduledAt": "2026-03-23T16:42:38.667Z",
"status": "scheduled",
"notes": "Canonicus eos atque quam tergiversatio nesciunt cruciamentum tener.",
"createdAt": "2026-02-23T06:06:40.219Z"
},
{
"id": 123,
"listingId": 45,
"prospectUserId": 221,
"scheduledAt": "2026-04-27T13:57:27.559Z",
"status": "scheduled",
"notes": "Tertius assumenda virgo volaticus blandior cumque dicta vitium.",
"createdAt": "2026-04-30T05:15:50.692Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=6",
"next": "/api/v1/showings?page=7",
"prev": "/api/v1/showings?page=5"
}
}