V0.4 // LIVE

Reddit,
as an
API.

Let Claude or ChatGPT pull Reddit posts, comments, and search results for you — or call the same data from your own code.
Read the tutorial →

02 // USE CASES

What you can
build with it

01

Ask your AI about any subreddit

"What is r/LocalLLaMA saying about Qwen 3 this week?" Claude Code picks up the bundled skill, runs hot/top/search + a post with comments, and summarizes in one turn.

02

Triage product feedback

"Find mentions of our product in the last 30 days and cluster comments by theme and sentiment." Replaces the manual copy-paste loop.

03

Find content & FAQ topics

"What questions do r/selfhosted users keep asking about Docker?" Surfaces blog-post, docs-gap, and support-article ideas from recurring threads.

04

Ground an agent in real-time Reddit

Point Claude Desktop, Cursor, or any MCP client at the service. Your agent can pull live Reddit discussion using the same API key — no extra glue code.

03 // PICK YOUR PATH

Three ways to
use it

From “I don’t write code” to “I’m shipping a product”.

01
I don't code

Use it from ChatGPT or Claude.ai

Claude (on claude.ai) can connect to this service directly. Ask it Reddit questions in plain English; it pulls the posts and comments itself.

Five-minute tutorial
02
I use Claude Code

Install the Claude skill

One command installs a Reddit skill into Claude Code. After that, Claude picks it up automatically whenever you ask about Reddit from your terminal.

npx skills add alexbruf/reddit-api-skill -a claude-code
Skill docs
03
I'm a developer

Call the REST API or remote MCP

Plain HTTP with Bearer auth. Or point an MCP client at /mcp. Same endpoints, same token.

curl -H "Authorization: Bearer $REDDIT_API_KEY" \
  "https://reddit-staging.vieweng.in/api/v1/r/python/hot?limit=10"
Developer quickstart