CIRAL Studio
RapidAPI

Videolyze

"What are viewers really saying?"

Extracts sentiments, recurring themes, questions and insights from YouTube comments.

Introduction

Videolyze is a defensive API that answers one simple question: "What are viewers really saying?". It returns a deterministic verdict — same input, same output. Always. Zero LLM, stateless, designed to integrate into your automated pipelines.

Input

Send a POST request with a JSON payload. See the example on the right.

Output

The response contains a verdict and explanatory signals. See the example on the right.

Signals

Each response includes a signals object that details the reasons for the verdict. These signals are deterministic and reproducible.

What the API does NOT do

  • Does not collect comments (you must provide them or provide a public video_id)
  • Does not moderate comments
  • Does not reply to comments
Request
{
  "video_id": "dQw4w9WgXcQ",
  "max_comments": 500,
  "language_filter": "en"
}
Response200 OK
{
  "video_id": "dQw4w9WgXcQ",
  "analysis": {
    "sentiment": {
      "positive": 0.78,
      "neutral": 0.15,
      "negative": 0.07
    },
    "themes": ["nostalgia", "humor", "music quality"],
    "top_questions": [
      "Why is this so catchy?",
      "Who's here in 2025?"
    ],
    "engagement_score": 0.92
  }
}

Ready to integrate Videolyze?

Available on RapidAPI. Integration in 5 minutes.

View on RapidAPIarrow_forward