🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Scavio Reddit

by @scavio-ai

Search Reddit posts or fetch a full post with threaded comments by URL. Use for discussion research, brand monitoring, sentiment analysis, or RAG pipelines n...

πŸ’‘ Examples

import os, requests

BASE = "https://api.scavio.dev" HEADERS = {"Authorization": f"Bearer {os.environ['SCAVIO_API_KEY']}"}

Search Reddit

results = requests.post(f"{BASE}/api/v1/reddit/search", headers=HEADERS, json={"query": "FastAPI vs Django 2026", "sort": "top"}).json()

posts = results["data"]["posts"] next_cursor = results["data"]["nextCursor"] # pass as "cursor" for next page

Fetch full post and comments

post_data = requests.post(f"{BASE}/api/v1/reddit/post", headers=HEADERS, json={"url": "https://www.reddit.com/r/Python/comments/1smb9du/fastapi_vs_django/"}).json()

post = post_data["data"]["post"] comments = post_data["data"]["comments"] # flat list, use depth/parentId for tree

βš™οΈ Configuration

Get a free API key at https://scavio.dev (1,000 free credits/month, no card required):

export SCAVIO_API_KEY=sk_live_your_key

View on ClawHub
TERMINAL
clawhub install scavio-reddit

πŸ§ͺ Use this skill with your agent

Most visitors already have an agent. Pick your environment, install or copy the workflow, then run the smoke-test prompt above.

πŸ” Can't find the right skill?

Search 60,000+ AI agent skills β€” free, no login needed.

Search Skills β†’