Limit of addresses per subscription

Hello guys
I have a question about this endpoint /eth_subscribe:

The use case is the following,
We have 100 addresses where we want to “listen” to any transaction happening on these addresses, whether it’s incoming or outgoing funds.
I would like to use eth_subscribe and in one call make a list of 100 addresses to “listen” to the events happening.
Is this the right endpoint to use for this case?
is there a list to the list of addresses I put as a parameter?

Thank you.

Hey, yes you can do that. You’ll need to subscribe to pendingTransactions and on any new data check if it matches any of your addresses.
There is an example here in .py Web3.py: How to Subscribe to Pending Ethereum Transactions in Python