reddit_request
Access any Reddit API endpoint that other tools don't wrap. Perform GET requests to endpoints like /r/rust/about/rules and receive raw responses; keep limits small to avoid large payloads.
Instructions
Call any Reddit API endpoint directly, for the many endpoints this server does not wrap. Paths are relative to https://oauth.reddit.com — e.g. /r/rust/about/rules. The response is returned raw and unshaped, so keep limit small: an unshaped listing is roughly ten times the size of what the other tools return. Writes are DISABLED: only GET is permitted. Set REDDIT_ALLOW_WRITES=1 and sign in to allow POST.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| form | No | Form fields for a POST. Reddit takes form encoding, never JSON. | |
| path | Yes | Path below the API root, starting with "/", e.g. "/r/rust/about/rules". | |
| query | No | Query parameters for a GET. | |
| asUser | No | Send with the signed-in user's token rather than the anonymous app token. Required for anything under /api/v1/me, /message or /subreddits/mine. | |
| method | No | HTTP method. | GET |