Overview - Analytics APIs
Programmatic analytics for connected channels and individual posts. Backed by each provider's native insights API, cached server-side by `(integrationId|postId, date)`.
Connect your agent today
Draft from chat, review in your calendar, and publish only what you approve.
Endpoints
Platform Analytics
Platform-native time-series metrics (followers, impressions, etc.) for one connected channel
Post Analytics
Per-post insights for a published row
Date window
Both endpoints take a required date query parameter accepting 7, 30, or 90 days. Responses are cached server-side; consecutive calls for the same window are fast.
Missing-link flow
When GET /public/analytics/post/{postId} returns { "data": { "missing": true } }, the scheduled-publish worker could not map the OpenQuok row to a live provider object. Recover by:
- Calling
GET /public/posts/{postId}/missingto fetch candidate ids and preview URLs from the provider. - Identifying the one that matches your post.
- Calling
PUT /public/posts/{postId}/release-idvariant=“default” /> with the chosen id. - Re-running the analytics query — subsequent calls return the metric series instead of
missing.