ink.branchline.listAuthorBookmarks

branchline.ink

Documentation

List bookmarks authored by an actor, newest first. Bookmarks are public records; any viewer may list them.

main query

List bookmarks authored by an actor, newest first. Bookmarks are public records; any viewer may list them.

Parameters

actor string did Required

DID of the author whose bookmarks to list.

cursor string Optional

Opaque pagination token returned by a prior call.

limit integer Optional

No description available.

Output

Encodingapplication/json
bookmarks array Required

No description available.

cursor string Optional

Opaque pagination token for the next page. Absent when there are no more results.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
DID of the author whose bookmarks to list.
Opaque pagination token returned by a prior call.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "bookmarks"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "description": "Opaque pagination token for the next page. Absent when there are no more results."
        },
        "bookmarks": {
          "type": "array",
          "items": {
            "ref": "#bookmarkView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "actor"
    ],
    "properties": {
      "actor": {
        "type": "string",
        "format": "did",
        "description": "DID of the author whose bookmarks to list."
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string",
        "description": "Opaque pagination token returned by a prior call."
      }
    }
  },
  "description": "List bookmarks authored by an actor, newest first. Bookmarks are public records; any viewer may list them."
}
bookmarkView object

No description available.

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

subjectPathUris array of stringat-uri Required

Ordered AT-URIs from the root bud to (and including) the subject bud.

subjectRootUri string at-uri Required

AT-URI of the root bud in the story tree the subject belongs to.

subjectUri string at-uri Required

AT-URI of the bud this bookmark points at.

uri string at-uri Required

The bookmark record AT-URI.

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "subjectUri",
    "subjectRootUri",
    "subjectPathUris",
    "createdAt"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "The bookmark record AT-URI."
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "subjectUri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the bud this bookmark points at."
    },
    "subjectRootUri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the root bud in the story tree the subject belongs to."
    },
    "subjectPathUris": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "at-uri"
      },
      "description": "Ordered AT-URIs from the root bud to (and including) the subject bud."
    }
  }
}

Lexicon Garden

@