Mute Accounts

This guide will show you how to mute accounts in Lens API.


The Lens API allows you to mute an account, so you won’t receive notifications from the muted account’s activities.

This feature only affects the data returned to the account performing the mute; the muted account will still be able to interact with its content. To prevent an account from interacting with your content entirely, see Block Accounts.

Use the mut mutation to mute an account. To unmute the account, use the unmute mutation.

You MUST be authenticated as Account Owner or Account Manager to make this request.

mutation {  mute(request: { account: "0x1234…" })}

That's it—the account is now muted.