Boards
List the authenticated user's boards
Returns every board the caller can see in a single response (not paginated): personal boards they own, boards they collaborate on, and boards from any Savee Teams workspace they're a member of. Use the ownership_type field on each board to tell user-owned boards apart from team boards. The order follows the caller's chosen boards-sort preference on savee.com.
Authorization
AuthorizationRequiredBearer <token>
Personal access token in the form sv_live_\<24 chars\>. Generate one at https://savee.com/developer/.
In: header
| Status code | Description |
|---|---|
200 | All boards visible to the caller. |
400 | Invalid input. |
401 | Missing or invalid Bearer token. |
402 | Authenticated but the user has no active subscription. |
403 | The Public API is not enabled for this account. |
429 | Rate limit exceeded. |
{boardID}/savesList saves on a specific board
boardID is the board id returned by /v1/boards. Accessible by any user with a role on the board (owner, admin, editor, viewer) and by team members for team-owned boards. Returns 404 when the board does not exist or the caller has no role on it — the API does not confirm whether someone else’s board exists.
Authorization
AuthorizationRequiredBearer <token>
Personal access token in the form sv_live_\<24 chars\>. Generate one at https://savee.com/developer/.
In: header
Path Parameters
boardIDRequiredstring
The board id (the id returned by /v1/boards).
Query Parameters
limitinteger
Page size (default 30, max 100).
Example:30Minimum: 1Maximum: 100cursorstring
Opaque cursor returned in next_cursor from the previous page.
| Status code | Description |
|---|---|
200 | A page of saves on the board. |
400 | Invalid input. |
401 | Missing or invalid Bearer token. |
402 | Authenticated but the user has no active subscription. |
403 | The Public API is not enabled for this account. |
404 | Board not found or not accessible to the caller. |
429 | Rate limit exceeded. |