← 返回
未分类 Key 中文

Verosight Monitor

Integrate Verosight API for social media intelligence and cyber monitoring. Sentiment analysis, trend detection, influencer identification, and bot detection...
集成Verosight API用于社交媒体情报与网络监控。情感分析、趋势检测、影响者识别和机器人检测。
jrrqd
未分类 clawhub v1.0.2 1 版本 100000 Key: 需要
★ 0
Stars
📥 393
下载
💾 0
安装
1
版本
#latest

概述

Verosight Monitor — Social Media Intelligence Skill

Integrate Verosight API for real-time social media monitoring and digital reputation management across major platforms.

Quick Setup

1. Get API Key

Sign up at verosight.com and generate an API key from the API Keys dashboard. Keys start with vlt_live_ (production) or vlt_test_ (test).

2. Authenticate

Exchange your API key for a JWT token (valid 24 hours):

JWT=$(curl -s -X POST "https://api.verosight.com/v1/auth/token" \
  -H "X-API-Key: vlt_live_YOUR_KEY" | jq -r '.token')

Or use the bundled auth script:

./scripts/verosight-auth.sh vlt_live_YOUR_KEY

3. Query Data

# Sentiment analysis
curl -s "https://api.verosight.com/v1/analytics/sentiment?query=KEYWORD&sources=x,instagram&days=7" \
  -H "Authorization: Bearer $JWT"

# Search posts
curl -s "https://api.verosight.com/v1/posts?query=KEYWORD&sources=x,instagram&limit=10" \
  -H "Authorization: Bearer $JWT"

API Endpoints

Posts

GET /v1/posts

Search posts across platforms with filters.

ParameterTypeDescription
------------------------------
querystringSearch keyword
sourcesstringComma-separated: x,instagram,tiktok,youtube,threads,news_portal
limitintResults per page (default: 10, max: 50)
daysintLookback period (1-90)
sentimentstringFilter: positive, negative, neutral
GET /v1/posts/:id

Get a single post by ID.

GET /v1/posts/:id/comments

Get comments for a post.

Analytics

GET /v1/analytics/sentiment

Sentiment analysis for a keyword. Returns positive/negative/neutral breakdown, weighted percentages, and sample posts.

ParameterTypeDescription
------------------------------
querystringSearch keyword
sourcesstringComma-separated platforms
daysintLookback period
limitintNumber of sample posts to return
GET /v1/analytics/volume

Post/comment volume over time (daily breakdown).

GET /v1/analytics/trending

Trending posts and profiles for a keyword.

Profiles

GET /v1/profiles?query=ACCOUNT&source=instagram

Search for social media profiles.

GET /v1/profiles/:source/:account

Get profile details (auto-crawls if missing).

GET /v1/profiles/:source/:account/stats

Engagement stats for a profile.

Search

POST /v1/search

Semantic search across all content.

Body:

{
  "query": "keyword",
  "sources": ["x", "instagram"],
  "days": 7
}

Account

GET /v1/account/balance

Check credit balance (0 cost).

GET /v1/account/usage

Usage history and statistics (0 cost).

Response Format

All responses follow a standard envelope:

{
  "data": { ... },
  "meta": {
    "request_id": "uuid",
    "credits_used": 2,
    "credits_remaining": 998
  },
  "pagination": {
    "next_cursor": "base64...",
    "has_more": true,
    "total": 38113
  }
}

Workflows

Sentiment Analysis Report

  1. Authenticate → get JWT
  2. Query /v1/analytics/sentiment → get positive/negative/neutral breakdown
  3. Query /v1/posts with sentiment=negative → identify vocal accounts
  4. Query /v1/analytics/volume → trend over time
  5. Compile report: overview → trend → narratives → insights → recommendations

For detailed workflow, see references/sentiment-workflow.md.

Influencer Identification

  1. Query posts about target topic with high engagement
  2. Sort by likes, shares, views
  3. Cross-reference with sentiment (positive vs negative influencers)
  4. Profile top accounts for follower count and verification status

Bot Detection

  1. Query posts about target topic across platforms
  2. 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
  3. Flag suspicious accounts for manual review

PDF Report Generation

Generate professional reports with tables, charts, and formatted layouts using pdfkit (Node.js).

See references/pdf-template.md for complete guide.

Supported Platforms

PlatformCoverage
--------------------
X (Twitter)Posts, replies, engagement metrics
InstagramPosts, captions, engagement
TikTokVideos, descriptions
YouTubeVideos, comments
ThreadsPosts, replies
FacebookPosts, pages
LinkedInPosts, articles
News PortalsArticles from Indonesian media

Credit System

Each successful API call (2xx response) costs credits. Failed calls (4xx/5xx) do not deduct credits.

TierRate LimitStarting Credits
----------------------------------
Standard60 req/min1,000
Pro300 req/min10,000
EnterpriseCustomCustom

Check balance:

curl -s "https://api.verosight.com/v1/account/balance" \
  -H "Authorization: Bearer $JWT"

Known Limitations

  • News portal results dominate volume (~70%); social platforms contribute less
  • Semantic search returns broadly relevant results; source/date filters are limited
  • Instagram direct scraping often blocked; use Verosight API for Instagram data
  • Profile metadata (followers, account age) may not be available for all accounts

Bundled Resources

FilePurpose
---------------
references/sentiment-workflow.mdStep-by-step sentiment analysis workflow with report template
references/pdf-template.mdPDF generation guide with pdfkit (tables, charts, layout)
scripts/verosight-auth.shAuth helper — exchange API key for JWT
scripts/quick-sentiment.shQuick sentiment check from command line

Links

版本历史

共 1 个版本

  • v1.0.2 当前
    2026-05-07 04:18 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Wikipedia Nearby

jrrqd
根据地理位置查找附近的维基百科条目,适用于用户询问“附近地点”“我附近有什么”“[地点]附近的地方”等场景。
★ 0 📥 375

Prayer Times Skill

jrrqd
伊斯兰祈祷时间提醒、待办清单与日志。当用户询问祈祷时间(如sholat、waktu solat、jadwalsholat)或想设置位置时使用。
★ 0 📥 328

OSNK Trainer

jrrqd
OSNK教练 -2006-2025年OSK/OSNK/SNK/Bebras题库,智能练习、速度冲刺、成绩追踪、全方位辅导。
★ 0 📥 401