Saves
List the authenticated user's saves
Newest first. Includes private saves (it's the caller's own data). The user field on each save is omitted because the caller is implicitly the owner.
Authorization
AuthorizationRequiredBearer <token>
Personal access token in the form sv_live_\<24 chars\>. Generate one at https://savee.com/developer/.
In: header
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. |
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. |
List the authenticated user’s home feed
Saves from users this user follows (and platform-curated content), newest first. Each save includes a user object describing the saver.
Authorization
AuthorizationRequiredBearer <token>
Personal access token in the form sv_live_\<24 chars\>. Generate one at https://savee.com/developer/.
In: header
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 feed saves. |
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. |