You need to handle multiple pages of client details if you are using the 'raw' API.
If you use the Python SDK, it will do the page handling for you, for instance...
clients = await aiomeraki.networks.getNetworkClients(net['id'], timespan=t, perPage=1000, total_pages="all")
...can return many thousands of clients.