GET /api/bookmarks/
Return a paginated list of bookmarks.
Retrieves a paginated list of bookmarks with optional filtering by status.
Endpoint
GET /api/bookmarks/
Parameters
| Name | Type | Description |
|---|---|---|
| page | int = 1 | The page number to retrieve for paginated results. |
| per_page | int = 25 | The number of bookmark items to include per page, with a maximum limit of 100. |
| status | string = null | An optional filter to restrict results to bookmarks with a specific status such as active, archived, or trashed. |
Response
| Status | Description |
|---|---|
| 200 | Successfully retrieved the list of bookmarks. Returns application/json. |