It’s confusing where to vote for n8n integration because the 2 previous n8n suggestions #2261 and #849 were closed and merged into #49, but #49 is also locked with a final post that says “to integrate with a specific automation service such as Zapier, Make, etc, please open a separate request so that we can prioritize it accordingly.”
This is the right spot :)
Wouldn’t the API make n8n integration superfluous?
Hi Hector,
Not really. The API lets you connect things your own way, but a direct n8n integration is easier to use and adds extra security.
Now that access to the Publer API is no longer in beta and available to all Business and Enterprise customers, please let us know if you would like to help us build the official integration for n8n.
Paid work, obviously, and we can grant you free access to the Business plan for the duration of the development work.
I am vibe coding to get post insights with n8n, but it is limited to 10 posts per page per request, and it is unclear on how to automatically loop and get all posts from all pages. Has anyone tried this and wont mind to advise? Thank you!
Hi @NG YINN SHENG
By default, the API returns 10 posts per page. To get all posts, you’ll need to use pagination. You can do this by adding the page parameter to your query.
The page parameter uses zero-based indexing:
page = 0 will return the first 10 posts
page = 1 will return the next 10 posts
and so on
More info here: https://publer.com/docs/analytics/post-insights#query-parameters