GET /api/bookmarks/
Return a paginated list of bookmarks.
Retrieves a paginated list of bookmarks, allowing filtering by status. This endpoint provides an overview of stored bookmarks.
Endpoint
GET /api/bookmarks/
Parameters
| Name | Type | Description |
|---|---|---|
| page | integer = 1 | The page number for the results, starting from 1. |
| per_page | integer = 25 | The number of items to return per page, with a maximum of 100. |
| status | string = null | Filters the bookmarks by their status. Valid values are 'active', 'archived', or 'trashed'. |
Response
| Status | Description |
|---|---|
| 200 | Successfully retrieved the paginated list of bookmarks. Returns application/json. |