# SocialFetch Rumble Video Comments

> SocialFetch Rumble Video Comments is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Fetches top-level comments on a Rumble video given its URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/rumble/videos/comments
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-rumble-video-comments-99eed347
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_edJJAYY8FSoLnt4QkitTo

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-rumble-video-comments-99eed347
```

Example prompt: Can you pull all the top-level comments from this Rumble video for me? Here's the link: https://rumble.com/v4abcde-some-video.html

## When to prefer this

Use this endpoint when you need to retrieve audience comments from a specific Rumble video by URL, particularly for sentiment analysis, content moderation review, research, or monitoring viewer reactions. Prefer this over manual scraping or general web access tools when you need structured comment data from Rumble specifically.

## Known failure modes

- Invalid or malformed Rumble video URL returns an error
- Video URL points to a non-existent or deleted video resulting in empty or error response
- Private or restricted Rumble videos may return no comments or an access error
- Network timeouts if Rumble is slow to respond
- Pagination limits may cap the number of comments returned

## How this service works

List top-level comments on a Rumble video.

## Output

A list of top-level comments posted on the specified Rumble video, including comment text and likely commenter metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Link to the Rumble video."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-rumble-video-comments-99eed347/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
