List only brings 20 contacts

Hello, im trying to get my contacts names and numbers from certain list with hubspot API (python), everything works fine but problem is, it only brings 20 contact info when there is more then 120 contacts in list.
im using requests on this link :

     [https://api.hubapi.com/contacts/v1/lists/(listnumber](https://api.hubapi.com/contacts/v1/lists/{listnumber))/contacts/all?hapikey=(ApiKey)&property=phone&property=firstname

Hi @SBasharuli ,

Try passing the count parameter to let the API know how many results you want to return. The default value is 20 results, but by setting the &count=100 you can get 100 contacts from that API. In this case, you have over 120 contacts, so you need to offset param as well as described in the docs. So you have to pass the &vidOffset= param as well, where you can pass it the value of the vidOffset that is returned in your previous call.