The [V3 API](https://getpocket.com/developer/docs/v3/retrieve) of pocket states that retrieved results are paginated. > The maximum page size limit is 30 results. In order to retrieve more, you must paginate the result set. The codebase does not deal with this situation and hence the --count argument fails when: - count > 30 - count = -1 In both cases the result set will be limited to 30 items or less. What should happen is as stated in the pockyt documentation: > number of items : <amount> : {-1: all, [n: amount]}