Get All Bookmarks
GET
/bookmarks
Authentication
Requires JWT authentication viaAuthorization: Bearer <token> header.
Query Parameters
Include preview images in the response
Response
Success - Returns list of bookmarks
Create Bookmark
POST
/bookmarks
Authentication
Requires JWT authentication viaAuthorization: Bearer <token> header.
Request Body
Name of the bookmark
Description of the bookmark
Response
Created - Returns the newly created bookmark
Get Bookmark by ID
GET
/bookmarks/
Authentication
Requires JWT authentication viaAuthorization: Bearer <token> header.
Path Parameters
The unique identifier of the bookmark
Query Parameters
Include detailed information in the response
Response
Success - Returns the bookmark details
Delete Bookmark
DELETE
/bookmarks/
Authentication
Requires JWT authentication viaAuthorization: Bearer <token> header.
Path Parameters
The unique identifier of the bookmark to delete
Response
Success - Bookmark deleted successfully