Skip to main content

API docs

A fast, read-only Reddit API — posts, comments, comment trees, subreddits, and user profiles. Pay per request — 1 credit = 1 call, 1,000 free Reddit searches on signup, no card required. Full machine-readable spec at /openapi.json.

Quick start

  1. Sign up and verify your email.
  2. Finish account setup, then open /developer and create an API key — you get 1,000 free Reddit searches, no card required.
  3. Make your first call with the key — directly (below), or hand it to an AI agent over MCP instead.
curl "https://api.threadsnoop.com/v1/posts?subreddit=startups&limit=25" \
  -H "x-api-key: ts_live_YOUR_KEY"

Connecting Claude instead? One command:

Claude Code
claude mcp add --transport http threadsnoop https://api.threadsnoop.com/mcp \
  --header "x-api-key: ts_live_YOUR_KEY"

Claude Desktop and a downloadable lead-finding skill are both in Connect an AI agent below.

MCP server

A remote MCP server at https://api.threadsnoop.com/mcp, authenticated with the same x-api-key header. Seven tools, each billed exactly like the HTTP endpoint it wraps (1 credit/call; check_credits is free):

  • search_posts, search_comments — list/search posts and comments, or fetch by id.
  • get_comment_tree — full comment tree for a post.
  • search_subreddits, get_subreddit_rules — subreddit lookup.
  • get_user_profile — a Reddit user's karma/post/comment aggregate.
  • check_credits — balance + rate limit. Free.

Which do you use?

  1. One command, no OAuth traps:
    Terminal
    claude mcp add --transport http threadsnoop https://api.threadsnoop.com/mcp \
      --header "x-api-key: ts_live_YOUR_KEY"
  2. Paste the command in your terminal and press Enter.
  3. Start a session and ask Claude to search Reddit — the connection is live immediately.

Also listed on Smithery.

Skills

Free, packaged workflows on top of the API and MCP tools above — a finished playbook instead of raw endpoints. Read-only — none of them ever post, comment, or DM on Reddit itself.

Code guides

Prefer to write the code yourself? No SDK to install — each guide below is a real, runnable example against the live API.

OpenAPI spec

A machine-readable spec covering every endpoint, param, and response shape below — feed it into a client generator or any agent framework that imports tool definitions from a spec. /openapi.json.