Returns a paginated list of entities saved in the specified collection. The collection must belong to the authenticated user.
Path Parameters
The ID of the collection to fetch entities from.
Query Parameters
Page number (1-indexed). Default: 1.
Number of entities per page. Default: 20.
sortBy
"new" | "top" | "hot" | "added"
Sort mode. added sorts by when the entity was saved; others sort by entity properties. Default: "new".
Sort direction. Default: "desc".
Comma-separated list of associations to include: user, space, topcomment.
Response
The page of entity objects. Each entity includes isSaved: true.
Pagination metadata.
Total count of saved entities.
true if more pages exist.
Error Responses
Collection Not Found — 404
{ "error": "Collection not found", "code": "collection/not-found" }
{ "error": "Internal server error.", "code": "collection/server-error" }