GET /api/bookmarks/< bookmark_id >
Retrieve a single bookmark by ID.
Retrieve a single bookmark by ID. This endpoint allows consumers to fetch the details of a specific bookmark using its unique identifier.
Endpoint
GET /api/bookmarks/<bookmark_id>
Parameters
| Name | Type | Description |
|---|---|---|
| bookmark_id | string | The unique identifier of the bookmark to retrieve. |
Response
| Status | Description |
|---|---|
| 200 | Returned when the bookmark is successfully found and retrieved. Returns application/json. |
| 404 | Returned if no bookmark with the specified ID is found. Returns application/json. |