// DEVELOPER_DOCS

Developer Documentation

integrate reddit insights into your applications with our restful api

// QUICK_START [ readme ]

get started with the reddapi.dev Reddit Search API api in minutes · all endpoints require authentication

// AUTHENTICATION
Authorization: Bearer YOUR_API_KEY
// BASE_URL
https://reddapi.dev/v1
// INFO · GET_API_KEY

api keys are available in your account dashboard after subscribing. each api call counts toward your monthly quota.

// AGENT_SKILL [ install ]

add the reddapi.dev Reddit Search API skill to your ai coding agent for instant access

// VIA_CLI

use the skills cli to install into claude code

~/ $
npx skills add https://reddapi.dev reddit-search-api

› view_full_docs

// VIA_OPENCLAW

browse and install from the openclaw marketplace

/view_on_openclaw ↗

clawhub.ai/dowands/reddapi

// INFO · ABOUT_SKILLS

agent skills are portable packages that give ai agents access to external apis. once installed, your agent can use reddapi.dev Reddit Search API endpoints to search reddit, analyze sentiment, and discover trends.

// INTERACTIVE_EXPLORER

API Explorer

// WARN · QUOTA_USAGE

requests made through this explorer will count against your plan's quota.

// API_EXPLORER

loading_api_explorer...

POST /api/v1/leads [paid] api

Lead Generation

Find business leads and opportunities from Reddit discussions. Uses AI to score and classify posts based on buying intent, pain points, and solution requests.

// REQUEST_EXAMPLE
language::bash[ readonly ]
curl -X POST https://reddapi.dev/api/v1/leads \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "query": "people frustrated with project management tools",
  "limit": 10,
  "min_score": 60
}'
// RESPONSE_EXAMPLE
response.json [ readonly ]
{
  "success": true,
  "data": {
    "query": "people frustrated with project management tools",
    "results": [
      {
        "id": "lead001",
        "title": "Asana is getting too expensive for our team of 15",
        "content": "We're paying $400/mo for Asana and half our team doesn't even use it...",
        "subreddit": "projectmanagement",
        "author": "pm_burnt_out",
        "upvotes": 234,
        "comments": 89,
        "lead_score": 94,
        "lead_type": "pain_point",
        "pain_point": "Pricing - cost too high for team size",
        "opportunity": "Affordable project management alternative for mid-size teams",
        "industry": "SaaS / Project Management",
        "target_product": "Asana",
        "url": "https://reddit.com/r/projectmanagement/comments/lead001"
      },
      {
        "id": "lead002",
        "title": "What are people using instead of Monday.com?",
        "content": "Monday.com's UI is too cluttered. Need something simpler for a small marketing agency...",
        "subreddit": "smallbusiness",
        "author": "agency_owner_22",
        "upvotes": 156,
        "comments": 67,
        "lead_score": 88,
        "lead_type": "solution_request",
        "pain_point": "UX/UI - interface too complex",
        "opportunity": "Simple project management tool for small agencies",
        "industry": "Marketing / Professional Services",
        "target_product": "Monday.com",
        "url": "https://reddit.com/r/smallbusiness/comments/lead002"
      }
    ],
    "total": 2,
    "processing_time_ms": 840
  }
}
// RATE_LIMITS [ 5 tiers ]

api access is available for paid subscribers · each plan has different limits

// PLAN // MONTHLY_QUOTA // RATE_LIMIT
Free 0 requests/month n/a · api unavailable
Lite 500 requests/month 50 req/min
Starter 5000 requests/month 50 req/min
Pro 15000 requests/month 100 req/min
Enterprise Unlimited 1000 req/min
// INFO · RATE_LIMIT_HEADERS

all paid api responses include: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset

// CTA · GET_STARTED

Ready to get started?

sign up to get your api key and start building

▶ get_api_key