Pagination
GET /v0/posts is paginated with page numbers.
Parameters
| Parameter | Description |
|---|---|
limit | Number of items per page (default 200, max 200) |
page | 1-based page number (default 1) |
Response
Each response includes the current page and totals so you know when to stop:
{ "posts": [ /* ... */ ], "page": 1, "totalPages": 4, "total": 87 }
Paging through results
# First page curl "https://api.schedulin.app/v0/posts?limit=25&page=1" \ -H "x-api-key: sk_live_..." # Next page — increment `page` until it reaches `totalPages` curl "https://api.schedulin.app/v0/posts?limit=25&page=2" \ -H "x-api-key: sk_live_..."
NOTE
Combine pagination with filters like , , and to narrow results.