logo
Lens Quick Widgets

Accounts List

Display a customizable list of Lens Protocol accounts with various filtering options, pagination, and interactive features.

Configurator

Search Options (use only one)

Search for accounts by name or handle

Press Enter to add multiple handles

Show followers of a specific handle

Show accounts followed by a specific handle

Show accounts managed by a specific address

Sorting Options
Display Options

Custom font size (12px, 1rem, etc.)

Component Code:
import { AccountsList, PageSize, AccountsOrderBy, FollowersOrderBy, FollowingOrderBy, Theme, Size } from "lens-quick-widgets"

<AccountsList 
  theme={Theme.light}
  accountSize={Size.small}
  pageSize={PageSize.Ten}
  
  
  
  
  
  orderBy={AccountsOrderBy.BestMatch}
  followersOrderBy={FollowersOrderBy.AccountScore}
  followingOrderBy={FollowingOrderBy.AccountScore}
  
  
  
  
  onAccountClick={(account) => console.log("Account clicked:", account)}
  onFollowed={() => console.log("Account followed/unfollowed")}
/>
Embed Code:
<iframe 
  src="https://lens-quick-widgets-web.vercel.app/embed/accounts-list?theme=light&accountSize=small&pageSize=TEN&orderBy=BEST_MATCH&followersOrderBy=ACCOUNT_SCORE&followingOrderBy=ACCOUNT_SCORE" 
  width="100%" 
  height="600px" 
  style={{border: 'none'}}>
</iframe>

Preview

Loading accounts...