showings
showings
Page 5 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": 97,
"listingId": 34,
"prospectUserId": 20,
"scheduledAt": "2026-05-13T18:43:24.691Z",
"status": "no_show",
"notes": "Arca calco cervus error vergo ago.",
"createdAt": "2026-05-06T22:35:39.375Z"
},
{
"id": 98,
"listingId": 35,
"prospectUserId": 5,
"scheduledAt": "2026-05-10T17:00:32.519Z",
"status": "completed",
"notes": "Alii annus unde credo.",
"createdAt": "2026-04-22T21:28:12.616Z"
},
{
"id": 99,
"listingId": 36,
"prospectUserId": 165,
"scheduledAt": "2025-10-28T15:38:10.418Z",
"status": "cancelled",
"notes": "Iste cerno maiores optio curtus.",
"createdAt": "2025-10-05T08:14:18.460Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 483,
"totalPages": 21
},
"links": {
"self": "/api/v1/showings?page=5&limit=24",
"first": "/api/v1/showings?page=1&limit=24",
"last": "/api/v1/showings?page=21&limit=24",
"next": "/api/v1/showings?page=6&limit=24",
"prev": "/api/v1/showings?page=4&limit=24"
}
}