search_bookmarks
Full-text search across bookmark titles and descriptions.
def search_bookmarks(
q: string,
limit: integer = 20
) - > object
Performs a full-text search across bookmark titles and descriptions. Returns a JSON object containing the search results and their count.
Parameters
| Name | Type | Description |
|---|---|---|
| q | string | The search query string used to filter bookmarks by title and description. |
| limit | integer = 20 | The maximum number of search results to return. |
Returns
| Type | Description |
|---|---|
object | A JSON object with 'results' (a list of bookmark dictionaries) and 'count' (the number of results). |