How to pull Popup Form views, conversion rate, and Contacts Gathered (aggregated by Month) via API

I’m trying to get a monthly summary of the Popup Form Views, Conversion Rate, and Contacts Gathered. Ideally the data would be aggregated by month to give a monthly overview, for a series of months over a given timeframe.

I’d like to get results returned similarly to what I’m getting from the following query, but have the results ONLY contain Popup Forms.

https://api.hubapi.com/analytics/v2/reports/forms/summarize/monthly?start=

My problem is that the returned data includes all forms and I can’t figure out how to filter the results to ONLY show popup forms data. What would the proper query to get this data?

My end goal is to gather the required data to replicate what’s shown on the Pop Up overview page, so I can replicate it within Klipfolio. Here’s the way that data is displayed on the Pop Up overview page:

Thanks in advance!

Welcome, @cfrye_1st_page.

Happy to help.

While the Get analytics data for specific objects endpoint can’t be filtered directly by all pop-up forms, you can filter by multiple form guid values.

If you query the Get all forms endpoint, you can pick out the guid values of all the pop-up forms in your account, which will have "Pop-up form:" prepended to the name property value.

Armed with the IDs of these pop-up forms, you can add ?f={guid-1}&f={guid-2}&f={guid-3} etc. to filter analytics/v2/reports/forms/summarize/monthly by only pop-up forms.

Thanks @IsaacTakushi! Your suggestion works well.

Glad I could help, @cfrye_1st_page!