Can Using List Membership API override the 10K query limit rule ?

Hi ,

Q) Will I run into 10K limits when I use the List Membership API?

Reason:

I am using the following URL to pull down all the contact IDs in a list called “Awaiting Scrubs”: :https://api.hubapi.com/crm/v3/lists/12581/memberships?limit=250

  1. We have over 136K members in this list where List id = 12581.
  2. I had read in the API Integrations document that this API can pull members at 250 records per batch but it only pulls the contact id s. (I need specific contact properties per each record)
  3. In order to get all 136K contact ids, I need to add additional code to grab the response results paging->after->link URL to grab the next bacth of 250 id records.
  4. Finally, I’m thinking that I would need to construct another API call, based on contact object, that will create a string of the 250 contact ids and will somehow grab those specific property values from each contact record based on its corresponding id.

If it is true that I can grab all 136K contact IDs using the List Membership API , then I can override this Limit of 10K records per query.

Thanks

Since we are pulling down large data from HubSpot to our AWS environmen and it is overwhelming the lambda , instead of creating recusion on the lambda , the best way to handle these would be to possibly use AWS App Flow, EC2, Fastgate, or Step Function.