Request parameters
| Parameter | Type | Default | Range | What it does |
|---|---|---|---|---|
limit | integer | 20 | 1–100 | How many results to return per page |
offset | integer | 0 | 0+ | How many results to skip before starting the page |
Response metadata
Every paginated response includes ameta.pagination object that tells you where you are in the result set:
| Field | Type | What it tells you |
|---|---|---|
totalCount | integer | Total results across all pages |
hasMore | boolean | Whether there are more pages after this one |
limit | integer | Page size (echoed from your request) |
offset | integer | Current position in the result set |
Which endpoints are paginated?
| Endpoint | What it returns |
|---|---|
GET /slice-runs | Run history for your team |
POST /posts/search | Summaries and scorecards matching your filters |
Fetching all pages
Use thehasMore field to loop through pages. Increment offset by limit each time until hasMore is false.