Analytics
Channel analytics
Section titled “Channel analytics”GET /public/v1/analytics/:id?date=7| Parameter | Description |
|---|---|
id |
The channel ID. |
date |
Number of days to look back, for example 7 or 30. |
curl "https://app.beeive.com/public/v1/analytics/CHANNEL_ID?date=30" \ -H "Authorization: YOUR_API_KEY"Returns a list of metrics, each with a value per day:
[ { "label": "Views", "data": [ { "total": 120, "date": "2026-12-01" }, { "total": 98, "date": "2026-12-02" } ] }]Which metrics you get depends on the network.
Post analytics
Section titled “Post analytics”GET /public/v1/analytics/post/:postId?date=7Metrics for one published post, such as views, likes and comments, in the same format as channel analytics.