showings
showings
Page 18 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": 409,
"listingId": 152,
"prospectUserId": 38,
"scheduledAt": "2026-05-29T20:04:14.678Z",
"status": "completed",
"notes": "Aperiam ambitus attonbitus cicuta thesis virga conscendo aperiam terror.",
"createdAt": "2026-05-20T04:24:13.243Z"
},
{
"id": 410,
"listingId": 153,
"prospectUserId": 50,
"scheduledAt": "2025-09-23T01:32:07.102Z",
"status": "completed",
"notes": "Ago administratio abeo bestia porro summisse cruentus eligendi.",
"createdAt": "2025-09-03T00:02:39.063Z"
},
{
"id": 411,
"listingId": 154,
"prospectUserId": 137,
"scheduledAt": "2026-04-15T16:20:38.297Z",
"status": "no_show",
"notes": "Vicissitudo aegrotatio tollo voluptates ultio audeo.",
"createdAt": "2026-03-19T02:36:50.836Z"
}
],
"meta": {
"page": 18,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=18&limit=24",
"first": "/api/v1/showings?page=1&limit=24",
"last": "/api/v1/showings?page=21&limit=24",
"next": "/api/v1/showings?page=19&limit=24",
"prev": "/api/v1/showings?page=17&limit=24"
}
}