Service domainSOCIAL MEDIA
Arcade Optimized
Arcade.dev LLM tools Reddit
11tools
Reddit Toolkit
The Reddit toolkit connects Arcade agents to the Reddit platform, enabling authenticated read and write interactions with posts, comments, and subreddits on behalf of users.
Capabilities
- Identity & account: Retrieve the authenticated user's username and their own post history.
- Subreddit discovery: Check subreddit existence and accessibility, fetch subreddit rules, and browse posts by listing type (hot, new, top, controversial) with time-range filtering.
- Post retrieval: Fetch the full content of one or many posts by identifier; bulk retrieval is handled in a single request for efficiency.
- Engagement: Submit new text posts to a subreddit, comment on posts, and reply to existing comments.
OAuth
This toolkit uses OAuth 2.0 via Reddit as the auth provider. Arcade manages the OAuth flow automatically. See the Reddit auth provider docs for setup details.
Available tools(11)
11 of 11 tools
Operations
Behavior
| Tool name | Description | Secrets | |
|---|---|---|---|
Checks whether the specified subreddit exists and also if it is accessible
to the authenticated user.
Returns:
{"exists": True, "accessible": True} if the subreddit exists and is accessible.
{"exists": True, "accessible": False} if the subreddit exists but is private or restricted.
{"exists": False, "accessible": False} if the subreddit does not exist. | |||
Comment on a Reddit post | |||
Get the content (body) of multiple Reddit posts by their identifiers.
Efficiently retrieve the content of multiple posts in a single request.
Always use this tool to retrieve more than one post's content. | |||
Get the content (body) of a Reddit post by its identifier. | |||
Get posts that were created by the authenticated user sorted by newest first | |||
Get the Reddit username of the authenticated user | |||
Gets posts titles, links, and other metadata in the specified subreddit
The time_range is required if the listing type is 'top' or 'controversial'. | |||
Gets the rules of the specified subreddit | |||
Get the first page of top-level comments of a Reddit post. | |||
Reply to a Reddit comment | |||
Submit a text-based post to a subreddit |
Last updated on