# StableSocial Rumble Search

> StableSocial Rumble Search is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Search Rumble for videos and channels matching a keyword query, with pagination support.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/rumble/search
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-rumble-search-e90ac135
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LqIrm3SrPSFIwKCkScLnJ

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 stablesocial-rumble-search-e90ac135 -d '<json body>'
```

Example prompt: Search Rumble for videos about 'cryptocurrency regulation' and show me the top results — if there are more, grab page 2 as well.

## When to prefer this

Use this endpoint when you need programmatic, no-auth, pay-per-request access to Rumble search results without maintaining a subscription or scraping Rumble directly. Ideal for agents that need ad-hoc keyword searches on Rumble alongside other social platforms via the same API provider.

## Known failure modes

- Empty results if query matches no Rumble content
- Invalid or expired cursor causes pagination failure
- Query string too short or empty triggers validation error
- Rate limits or upstream Rumble changes may cause transient failures
- Payment failure if USDC balance is insufficient

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

A list of Rumble search results matching the query, including video titles, channel names, URLs, and metadata, plus a pagination cursor to fetch subsequent pages of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "minLength": 1,
   "description": "Search query."
  },
  "cursor": {
   "type": "string",
   "description": "Cursor from the previous response. This is the next page number, like 2 or 3."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-rumble-search-e90ac135/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
