Documentation · v0.1.0

API Reference

The Reddit Intel API exposes Reddit's public data as a typed REST surface plus a native MCP server, with quantitative trend signals layered on top. Base URL: https://api.redditintel.dev. All endpoints are versioned under /v1/.

Responses are JSON, wrapped in a consistent envelope. The full OpenAPI 3.1 specification is published at /v1/openapi.json.

Three ways to integrate

Pick the surface that fits your stack — the underlying data is identical across all three.

Before you begin

  1. 01
    Get an API keySubscribe on a marketplace (API.market, Zyla, ApyHub) and grab your bearer token.
  2. 02
    Send it in every requestPass it in the Authorization header. See Authentication for details.
  3. 03
    Pick your tierFree, Pro, Business, or Scale — each unlocks different features and rate limits.
  4. 04
    Start with a small endpointGET /v1/subreddits/python is a good first call. No setup, just data.

A first request

Once you have a key, this command returns the public profile of any subreddit:

curl https://api.redditintel.dev/v1/subreddits/python \
  -H "Authorization: Bearer <YOUR_API_KEY>"

Response shape: { "data": { ... }, "meta": { "request_id": "..." } }. Full payload in Subreddits → Get subreddit metadata.