Get analytics data for a specific integration/channel. Returns metrics like followers, impressions, engagement, etc. depending on the platform.
cURL
curl --request GET \ --url https://api.postiz.com/public/v1/analytics/{integration} \ --header 'Authorization: <api-key>'
[ { "label": "Followers", "data": [ { "total": "1250", "date": "2025-01-01" }, { "total": "1280", "date": "2025-01-02" } ], "percentageChange": 2.4 }, { "label": "Impressions", "data": [ { "total": "5000", "date": "2025-01-01" }, { "total": "5200", "date": "2025-01-02" } ], "percentageChange": 4 } ]
Your Postiz API key
Integration ID
Number of days to look back for analytics data (e.g. 7, 30, 90)
Analytics data for the integration
Metric label (e.g. Followers, Impressions, Likes)
Show child attributes
Percentage change over the selected period
Was this page helpful?