showings
showings
Page 12 of 21.
Overview
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/showings?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/showings.d.ts https://example-data.com/types/showings.d.ts
import type { Showing, ListEnvelope } from "./types/showings";
const res = await fetch(
"https://example-data.com/api/v1/showings?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Showing>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 265,
"listingId": 99,
"prospectUserId": 191,
"scheduledAt": "2025-11-02T08:50:43.094Z",
"status": "scheduled",
"notes": "Sollers vulgo arceo corroboro.",
"createdAt": "2025-10-22T09:29:05.003Z"
},
{
"id": 266,
"listingId": 100,
"prospectUserId": 166,
"scheduledAt": "2026-05-16T21:54:49.881Z",
"status": "scheduled",
"notes": "Maiores enim tenuis attonbitus totus adinventitias.",
"createdAt": "2026-04-17T16:17:46.081Z"
},
{
"id": 267,
"listingId": 100,
"prospectUserId": 5,
"scheduledAt": "2026-04-22T08:13:02.840Z",
"status": "scheduled",
"notes": "Ascisco arto trepide accommodo soluta comes pecto.",
"createdAt": "2026-04-10T13:11:25.632Z"
}
],
"meta": {
"page": 12,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=12&limit=24",
"first": "/api/v1/showings?page=1&limit=24",
"last": "/api/v1/showings?page=21&limit=24",
"next": "/api/v1/showings?page=13&limit=24",
"prev": "/api/v1/showings?page=11&limit=24"
}
}