# SocialFetch Rumble Channel Videos

> SocialFetch Rumble Channel Videos 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).

Lists videos and Shorts from a Rumble channel, with pagination support.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/rumble/channels/videos
- 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-channel-videos-0cdd0954
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FX5DV6kN3EB5_zuZnYi-P

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-channel-videos-0cdd0954
```

Example prompt: Can you pull the list of videos from the Rumble channel at https://rumble.com/c/SomeChannel so I can see what content they've uploaded?

## When to prefer this

Use this endpoint when you need to enumerate or browse all videos from a specific Rumble channel, including Shorts. Prefer this over single-video metadata endpoints when you need a full content catalog or feed rather than details on one video.

## Known failure modes

- Invalid or non-existent Rumble channel URL returns an error or empty result
- Malformed cursor token causes pagination to fail
- Channel has no public videos, returning an empty list
- Rate limiting or upstream Rumble access issues cause failed fetch
- Missing required 'url' query parameter causes validation error

## How this service works

List videos and Shorts from a Rumble channel.

## Output

A paginated list of videos and Shorts from the specified Rumble channel, including video metadata such as titles, URLs, and thumbnails, along with a cursor for fetching additional pages.

## 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 channel."
      },
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Page number from a previous response."
      }
     }
    }
   },
   "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-channel-videos-0cdd0954/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)
