showings
showings
Page 6 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": 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&limit=24",
"first": "/api/v1/showings?page=1&limit=24",
"last": "/api/v1/showings?page=21&limit=24",
"next": "/api/v1/showings?page=7&limit=24",
"prev": "/api/v1/showings?page=5&limit=24"
}
}