# SocialFetch Rumble Video Metadata

> SocialFetch Rumble Video Metadata 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-15).

Fetches metadata for a Rumble video given its URL.

## Facts

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

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-metadata-8e8fa448
```

Example prompt: Can you pull up the metadata for this Rumble video — https://rumble.com/v4example-some-video.html — I want to see the title, description, view count, and who uploaded it.

## When to prefer this

Use this endpoint when you need structured metadata about a specific Rumble video and have its URL. Ideal for agents monitoring Rumble content, enriching databases with video details, or verifying video information without manually visiting the page.

## Known failure modes

- Invalid or non-Rumble URL returns an error
- Private or deleted Rumble videos may return no data or a not-found error
- Malformed URL input may trigger a validation error
- Rate limiting or payment failure for the x402 micropayment may block the request
- Rumble page structure changes may cause extraction failures

## How this service works

Get metadata for a Rumble video by URL.

## Output

Returns structured metadata for the specified Rumble video, including title, description, author/uploader, view count, publish date, thumbnail URL, and other available video details.

## 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-metadata-8e8fa448/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)
