showings
showings
Page 17 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": 385,
"listingId": 143,
"prospectUserId": 204,
"scheduledAt": "2025-03-15T18:39:42.013Z",
"status": "scheduled",
"notes": "Sono ratione cum eos attonbitus tyrannus demergo coerceo.",
"createdAt": "2025-02-25T09:36:06.160Z"
},
{
"id": 386,
"listingId": 143,
"prospectUserId": 187,
"scheduledAt": "2026-01-26T10:31:53.318Z",
"status": "scheduled",
"notes": "Asper validus vester tamdiu audentia demoror succurro.",
"createdAt": "2026-01-17T00:41:12.628Z"
},
{
"id": 387,
"listingId": 143,
"prospectUserId": 126,
"scheduledAt": "2025-06-16T14:14:24.567Z",
"status": "completed",
"notes": "Certus claudeo apostolus auctus deputo volo cauda.",
"createdAt": "2025-06-10T10:16:16.565Z"
}
],
"meta": {
"page": 17,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=17&limit=24",
"first": "/api/v1/showings?page=1&limit=24",
"last": "/api/v1/showings?page=21&limit=24",
"next": "/api/v1/showings?page=18&limit=24",
"prev": "/api/v1/showings?page=16&limit=24"
}
}