Matomo API data from multiple urls

Hello all,

I’m using the Actions.getPageUrl API method to get the data from https://mysite.com/page1_a.php.

I would also like to get the data from
https://mysite.com/page1_b.php and
https://mysite.com/page1_c.php

and that they could be displayed added up all together

Is this possible? If so, how?

Thank you very much!

Is the page title the same?
If yes, then you can use page title instead of page URL
If no, then you can, either change (client side: see setCustomUrl) the tracked page URL or page title:
https://developer.matomo.org/api-reference/tracking-javascript#configuration-of-the-tracker-object
Or else you can use some custom action dimension to categorize the pages you track:

Thanks a lot, it worked!!