Skip to main content

Bookmarks API Reference

Complete reference for all bookmark-related endpoints in the Voyager API.

GET /api/v2/bookmarks

List bookmarks (typically accessed via project endpoint).

POST /api/v2/bookmarks

Create a new bookmark.

Request Body

{
  "project": "project-uuid",
  "name": "Bookmark Name",
  "bookmark_type": "type",
  "viewport_mode": "mode",
  "viewports": [...]
}

GET /api/v2/bookmarks/

Get bookmark details.

PUT /api/v2/bookmarks/

Update bookmark.

DELETE /api/v2/bookmarks/

Delete a bookmark.

GET /api/v2/bookmarks//comments

List bookmark comments.

POST /api/v2/bookmarks//comments

Create a comment on a bookmark.

GET /api/v2/bookmarks//renders

List bookmark renders.

POST /api/v2/bookmarks//renders

Create a render for a bookmark.
Bookmarks are typically accessed through project endpoints. See Projects API Reference.