Working with Project Insights
Aggregate insights reveal patterns across your recordings.
Overview
Project Insights analyze all content in a project to identify:
- Key themes — Common topics and trends
- Sentiment distribution — Overall tone analysis
- Action items — Frequently mentioned next steps
- Recommendations — Suggested improvements
Generating Insights
curl -X POST https://scribesight.com/api/v1/projects/proj_xxx/insights/generate \
-H "Authorization: Bearer sk_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"lookback_days": 30
}'
Fetching Results
curl https://scribesight.com/api/v1/projects/proj_xxx/insights \
-H "Authorization: Bearer sk_live_xxx"
Automation
Set up a webhook to receive notifications when insights are ready:
{
"events": ["project_insights.completed"]
}
Then fetch the full insights when notified.
Use Cases
- Weekly reports — Generate every Monday
- Campaign analysis — After major initiatives
- Team reviews — Monthly performance insights
- Trend tracking — Compare insights over time