Loading...
Loading...
View social media analytics and insights. Use when the user wants to check post performance, engagement metrics, best posting times, follower stats, content decay, posting frequency, or any analytics data from their connected platforms.
npx skill4agent add mrpaulscrivens/nosy-pandas-skills panda-analytics~/.pandaspanda-publishapi_urlapi_key# Read config values (use these instead of env vars in all curl commands)
PANDAS_API_URL="https://nosypandas.com/api"
PANDAS_API_KEY=$(grep '^api_key=' ~/.pandas 2>/dev/null | cut -d= -f2-)~/.pandasapi_key~/.pandascat > ~/.pandas << 'EOF'
api_url=https://nosypandas.com/api
api_key=the-pasted-key
media_folder=~/social-media
EOF
chmod 600 ~/.pandas~/.pandas| Command | Description |
|---|---|
| Overview | Post analytics with engagement metrics (paginated) |
| Best Time | Optimal times to post based on historical performance |
| Content Decay | How engagement drops off over time |
| Daily Metrics | Day-by-day engagement stats (filterable by date range) |
| Follower Stats | Follower growth and demographics |
| Post Timeline | Engagement timeline for posts |
| Posting Frequency | How often you're posting and consistency |
{"message": "Pro plan required."}Analytics requires a Pro plan.You're currently on the Basic plan. Analytics — including post performance, best posting times, follower growth, and content decay — are available on Pro.Upgrade to Pro ($79/year) from your dashboard's Billing page to unlock analytics.
~/.pandasapi_urlapi_keycurl -s "$PANDAS_API_URL/analytics" \
-H "Authorization: Bearer $PANDAS_API_KEY" \
-H "Accept: application/json"?postId=ID?page=N~/.pandasapi_urlapi_keycurl -s "$PANDAS_API_URL/analytics/best-time" \
-H "Authorization: Bearer $PANDAS_API_KEY" \
-H "Accept: application/json"~/.pandasapi_urlapi_keycurl -s "$PANDAS_API_URL/analytics/content-decay" \
-H "Authorization: Bearer $PANDAS_API_KEY" \
-H "Accept: application/json"~/.pandasapi_urlapi_keycurl -s "$PANDAS_API_URL/analytics/daily-metrics" \
-H "Authorization: Bearer $PANDAS_API_KEY" \
-H "Accept: application/json"?days=30~/.pandasapi_urlapi_keycurl -s "$PANDAS_API_URL/analytics/follower-stats" \
-H "Authorization: Bearer $PANDAS_API_KEY" \
-H "Accept: application/json"~/.pandasapi_urlapi_keycurl -s "$PANDAS_API_URL/analytics/post-timeline" \
-H "Authorization: Bearer $PANDAS_API_KEY" \
-H "Accept: application/json"?postId=ID~/.pandasapi_urlapi_keycurl -s "$PANDAS_API_URL/analytics/posting-frequency" \
-H "Authorization: Bearer $PANDAS_API_KEY" \
-H "Accept: application/json"| Status | Meaning | Recovery |
|---|---|---|
| 401 | Invalid API key | Check |
| 403 | Pro plan required | Show the upgrade message (see Pro Plan Gate section) |
| 422 | Validation error | Show the specific error messages from the response body and help the user fix them |
| 500 | Server error | Try again later |