GET form submission count via API?

Hi!

I’d like to use the Form API to fetch the total count of form submissions. As far as I can tell, this data isn’t directly available in the API. The method I’ve come up with so far is to get all form submissions via `/form-integrations/v1/submissions/forms/`, 50 at a time, then count the size of the list.

Is there a more straightforward way of doing this? Given the max of 50 results per call, it seems pretty easy to hit a rate limit if your list is in the 1000s.

@thinkybeast

Welcome to the Community!

Upon form submission, are you adding the contact to a specific list?

I would think hitting one of the lists endpoints would be the way to go

Right you are! That’s exactly what I was looking for. Thank you!