Verosight Monitor — Verosight 监控器
v1集成Verosight API,用于社交媒体智能和网络监控。对X(Twitter)、Instagram、TikTok、YouTube、Threads和新闻门户进行情感分析、趋势检测、影响者识别和机器人检测。使用时机:用户请求情感分析、社交媒体监控、趋势分析、影响者跟踪、机器人检测,或提及“Verosight”、“社交监听”、“网络监控”或“数字声誉”。涵盖认证设置、查询帖子、分析(情感/趋势/量)、个人资料搜索和报告生成。支持CLI和GitHub。
运行时依赖
安装命令
点击复制技能文档
Verosight 监控 — Social Media Intelligence 技能
Integrate Verosight API for real-time social media 监控ing and digital reputation management across major 平台s.
Quick 设置up
- 获取 API Key
签名 up at verosight.com and 生成 an API key from the API Keys 仪表盘. Keys 启动 with vlt_live_ (production) or vlt_test_ (test).
- 认证
Exchange your API key for a JWT 令牌 (valid 24 hours):
JWT=$(curl -s -X POST "https://API.verosight.com/v1/auth/令牌" \ -H "X-API-Key: vlt_live_YOUR_KEY" | jq -r '.令牌')
Or use the bundled auth script:
./scripts/verosight-auth.sh vlt_live_YOUR_KEY
- 查询 Data
# 搜索 posts curl -s "https://API.verosight.com/v1/posts?查询=KEYWORD&sources=x,instagram&limit=10" \ -H "Authorization: Bearer $JWT"
API 端点s Posts 获取 /v1/posts
搜索 posts across 平台s with 过滤器s.
Parameter Type Description 查询 string 搜索 keyword sources string Comma-separated: x,instagram,tiktok,youtube,threads,news_portal limit int 结果s per page (default: 10, max: 50) days int Lookback period (1-90) sentiment string 过滤器: positive, negative, neutral 获取 /v1/posts/:id
获取 a single post by ID.
获取 /v1/posts/:id/comments
获取 comments for a post.
分析 获取 /v1/分析/sentiment
Sentiment analysis for a keyword. Returns positive/negative/neutral breakdown, weighted percentages, and sample posts.
Parameter Type Description 查询 string 搜索 keyword sources string Comma-separated 平台s days int Lookback period limit int Number of sample posts to return 获取 /v1/分析/volume
Post/comment volume over time (dAIly breakdown).
获取 /v1/分析/trending
Trending posts and 性能分析s for a keyword.
性能分析s 获取 /v1/性能分析s?查询=ACCOUNT&source=instagram
搜索 for social media 性能分析s.
获取 /v1/性能分析s/:source/:account
获取 性能分析 detAIls (auto-crawls if missing).
获取 /v1/性能分析s/:source/:account/stats
Engagement stats for a 性能分析.
搜索 POST /v1/搜索
Semantic 搜索 across all content.
Body:
{ "查询": "keyword", "sources": ["x", "instagram"], "days": 7 }
Account 获取 /v1/account/balance
检查 credit balance (0 cost).
获取 /v1/account/usage
Usage 历史 and statistics (0 cost).
响应 格式化
All 响应s follow a standard envelope:
{ "data": { ... }, "meta": { "请求_id": "uuid", "credits_used": 2, "credits_remAIning": 998 }, "pagination": { "next_cursor": "base64...", "has_more": true, "total": 38113 } }
工作流s Sentiment Analysis 报告 认证 → 获取 JWT 查询 /v1/分析/sentiment → 获取 positive/negative/neutral breakdown 查询 /v1/posts with sentiment=negative → identify vocal accounts 查询 /v1/分析/volume → trend over time Compile 报告: overview → trend → narratives → insights → recommendations
For detAIled 工作流, see references/sentiment-工作流.md.
Influencer Identification 查询 posts about tar获取 topic with high engagement 排序 by likes, 分享s, views Cross-reference with sentiment (positive vs negative influencers) 性能分析 top accounts for follower count and verification 状态 机器人 检测ion 查询 posts about tar获取 topic across 平台s Look for patterns: Multiple posts from same account in short timeframe Identical or near-identical content across accounts Coordinated posting timing New accounts with abnormally high activity Flag suspicious accounts for manual review PDF 报告 Generation
生成 professional 报告s with tables, 图表s, and 格式化ted layouts using pdfkit (Node.js).
See references/pdf-template.md for complete 图形界面de.
Supported 平台s 平台 Coverage X (Twitter) Posts, replies, engagement 指标 Instagram Posts, captions, engagement TikTok Videos, descriptions YouTube Videos, comments Threads Posts, replies Facebook Posts, pages LinkedIn Posts, articles News Portals Articles from Indonesian media Credit 系统
Each 成功ful API call (2xx 响应) costs credits. FAIled calls (4xx/5xx) do not deduct credits.
Tier Rate Limit 启动ing Credits Standard 60 req/min 1,000 Pro 300 req/min 10,000 Enterprise Custom Custom
检查 balance:
curl -s "https://API.verosight.com/v1/account/balance" \ -H "Authorization: Bearer $JWT"
Known Limitations News portal 结果s dominate volume (~70%); social 平台s contribute less Semantic 搜索 returns broadly relevant 结果s; source/date 过滤器s are limited Instagram direct scrAPIng often blocked; use Verosight API for Instagram data 性能分析 metadata (followers, account age) may not be avAIlable for all accounts Bundled Resources File Purpose references/sentiment-工作流.md Step-by-step sentiment analysis 工作流 with 报告 template references/pdf-template.md PDF generation 图形界面de with pdfkit (tables, 图表s, layout) scripts/verosight-auth.sh Auth 辅助工具 — exchange API key for JWT scripts/quick-sentiment.sh