Skip to content

Browser Bookmarks

Fresh

Set Browser Bookmarks

URL: http://localhost:40185/api/v1/browser/bookmarks/setMethod: POST

ParameterRequiredTypeDescription
idYesstringBrowser ID
bookmarksYesarray[BrowserBookmark]Bookmark list

BrowserBookmark

ParameterRequiredTypeDescription
nameYesstringBookmark name
urlYesstringBookmark URL
json
{
  "id": "497548067550006541",
  "bookmarks": [
    { "name": "Google", "url": "https://www.google.com" },
    { "name": "TikTok", "url": "https://www.tiktok.com" }
  ]
}

Get Browser Bookmarks

URL: http://localhost:40185/api/v1/browser/bookmarks/getMethod: POST

ParameterRequiredTypeDescription
idYesstringBrowser ID

Response

json
{
  "code": 0,
  "data": {
    "bookmarks": [
      { "name": "Google", "url": "https://www.google.com" }
    ]
  }
}

GEELark API Documentation - Built with VitePress