Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
lignertys avatar

Reddapi

  • 3.2k installs
  • 1 repo stars
  • Updated July 31, 2026
  • lignertys/reddit-research-skill

reddapi is an agent skill that queries Reddit's full archive through reddapi.dev semantic search, trends, and subreddit APIs for market and competitive research.

About

reddapi is an agent skill for accessing Reddit's complete data archive through the third-party reddapi.dev API with semantic search, trends analysis, and subreddit discovery. Unlike official Reddit APIs it advertises no rate limits, no time restrictions, and no daily or monthly quotas while exposing historical and real-time posts and comments. Semantic search accepts natural language queries for pain points, competitor complaints, and niche opportunity phrases with configurable limits up to hundreds of results per call. The trends endpoint returns post_count, total_upvotes, avg_sentiment from negative one to one, trending_keywords, and growth_rate momentum for topic monitoring. Subreddit endpoints list popular communities and fetch per-subreddit metadata. Example workflows cover competitor complaint analysis, I wish there was an app niche discovery, and growth_rate reporting from trends JSON. Authentication uses a REDDAPI_API_KEY bearer token from reddapi.dev. Developers reach for it when running market research, competitive analysis, sentiment monitoring, or underserved-user-need discovery without Reddit official quota constraints.

  • Third-party reddapi.dev access with advertised unlimited QPS and no daily quotas.
  • Semantic search across posts and comments with natural language queries.
  • Trends API returns post_count, upvotes, avg_sentiment, keywords, and growth_rate.
  • Subreddit list and detail endpoints for community discovery.
  • Bearer REDDAPI_API_KEY authentication with curl examples for each endpoint.

Reddapi by the numbers

  • 3,238 all-time installs (skills.sh)
  • +380 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #173 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

reddapi capabilities & compatibility

Capabilities
semantic search across reddit posts and comments · trend analysis with sentiment and growth metrics · subreddit listing and metadata lookup · competitive and niche discovery query templates · bearer token authenticated http examples
Use cases
research · planning
From the docs

What reddapi says it does

Natural language search across millions of Reddit posts and comments
SKILL.md
npx skills add https://github.com/lignertys/reddit-research-skill --skill reddapi

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs3.2k
repo stars1
Security audit1 / 3 scanners passed
Last updatedJuly 31, 2026
Repositorylignertys/reddit-research-skill

How do I search Reddit discussions at scale for user pain points, competitor complaints, and emerging trends without official API rate limits?

Search Reddit's full archive via reddapi.dev semantic search, trends API, and subreddit discovery for market and competitive research.

Who is it for?

Researchers and product teams doing Reddit-based market research, competitive analysis, or niche opportunity discovery.

Skip if: Skip when you need official Reddit API compliance workflows or non-Reddit social data sources.

When should I use this skill?

User needs Reddit semantic search, trend analysis, subreddit discovery, or market research via reddapi.dev.

What you get

Structured search results or trend metrics with post counts, sentiment, keywords, and growth rates from Reddit archive queries.

  • search result sets
  • subreddit lists
  • trend reports

Files

SKILL.mdMarkdownGitHub ↗

reddapi.dev Skill

Overview

Access Reddit's complete data archive through reddapi.dev's powerful API. This skill provides semantic search, subreddit discovery, and trend analysis capabilities.

Key Advantage: This is a third-party service (not Reddit official), meaning:

  • No rate limits - Unlimited QPS and request volume
  • No time restrictions - 24/7 availability
  • No daily/monthly quotas - Use as much as you need
  • Full Reddit archive - Access historical and real-time discussions

Key Features

🔍 Semantic Search

Natural language search across millions of Reddit posts and comments.

# Search for user pain points
curl -X POST "https://reddapi.dev/api/v1/search/semantic" \
  -H "Authorization: Bearer $REDDAPI_API_KEY" \
  -d '{"query": "best productivity tools for remote teams", "limit": 100}'

# Find complaints and frustrations
curl -X POST "https://reddapi.dev/api/v1/search/semantic" \
  -H "Authorization: Bearer $REDDAPI_API_KEY" \
  -d '{"query": "frustrations with current TOOL_NAME", "limit": 100}'

📊 Trends API

Discover trending topics with engagement metrics.

# Get trending topics
curl "https://reddapi.dev/api/v1/trends" \
  -H "Authorization: Bearer $REDDAPI_API_KEY"

Response includes:

  • post_count: Number of posts
  • total_upvotes: Engagement score
  • avg_sentiment: Sentiment analysis (-1 to 1)
  • trending_keywords: Top keywords
  • growth_rate: Trend momentum

📝 Subreddit Discovery

# List popular subreddits
curl "https://reddapi.dev/api/subreddits?limit=100" \
  -H "Authorization: Bearer $REDDAPI_API_KEY"

# Get specific subreddit info
curl "https://reddapi.dev/api/subreddits/programming" \
  -H "Authorization: Bearer $REDDAPI_API_KEY"

Use Cases

Market Research

# Analyze competitor discussions
curl -X POST "https://reddapi.dev/api/v1/search/semantic" \
  -H "Authorization: Bearer $REDDAPI_API_KEY" \
  -d '{"query": "COMPETITOR problems complaints", "limit": 200}'

Niche Discovery

# Find underserved user needs
curl -X POST "https://reddapi.dev/api/v1/search/semantic" \
  -H "Authorization: Bearer $REDDAPI_API_KEY" \
  -d '{"query": "I wish there was an app that", "limit": 100}'

Trend Analysis

# Monitor topic growth
curl "https://reddapi.dev/api/v1/trends" \
  -H "Authorization: Bearer $REDDAPI_API_KEY" | python3 -c "
import sys, json
data = json.load(sys.stdin)
for trend in data.get('data', {}).get('trends', []):
    print(f\"{trend['topic']}: {trend['growth_rate']}% growth\")
"

Response Format

Search Results

{
  "success": true,
  "results": [
    {
      "id": "post123",
      "title": "User post title",
      "selftext": "Post content...",
      "subreddit": "r/somesub",
      "score": 1234,
      "num_comments": 89,
      "created_utc": "2024-01-15T10:30:00Z"
    }
  ],
  "total": 15000
}

Trends Response

{
  "success": true,
  "data": {
    "trends": [
      {
        "topic": "AI regulation",
        "post_count": 1247,
        "total_upvotes": 45632,
        "avg_sentiment": 0.42,
        "growth_rate": 245.3
      }
    ]
  }
}

Environment Variables

export REDDAPI_API_KEY="your_api_key"

Get your API key at: https://reddapi.dev

Related Skills

  • niche-hunter: Automated opportunity discovery
  • market-analysis: Comprehensive research workflows

Related skills

Forks & variants (1)

Reddapi has 1 known copy in the catalog totaling 0 installs. They canonicalize to this original listing.

How it compares

Pick reddapi for historical semantic Reddit mining; pick landing-page or survey skills for direct user validation outside social archives.

FAQ

How is reddapi.dev different from official Reddit APIs?

It is a third-party service advertising no rate limits, 24/7 availability, and no daily or monthly quotas on request volume.

What metrics does the trends API return?

post_count, total_upvotes, avg_sentiment, trending_keywords, and growth_rate for each topic.

How do I authenticate requests?

Set REDDAPI_API_KEY and send Authorization Bearer on each curl or HTTP call.

Is Reddapi safe to install?

skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.