This skill wraps 3 Reddit operations exposed by JustOneAPI. It is strongest for post Details, post Comments, and keyword Search. Expect common inputs such as postId, after, cursor, keyword.
When To Use It
- The user needs post Details or post Comments on Reddit.
- The task lines up with keyword Search rather than a generic cross-platform workflow.
- The user can provide identifiers or filters such as
postId,after,cursor,keyword. - The user wants an exact API-backed answer instead of a freeform summary.
Representative Operations
getRedditPostDetailV1: Post Details — Get Reddit post Details data, including author details, subreddit info, and engagement counts, for content analysis, moderation research, and monitoringgetRedditPostCommentsV1: Post Comments — Get Reddit post Comments data, including text, authors, and timestamps, for discussion analysis and moderation researchsearchRedditV1: Keyword Search — Get Reddit keyword Search data, including titles, authors, and subreddit context, for topic discovery and monitoring
Request Pattern
- 3 operations are available in this skill.
- HTTP methods used here:
GET. - The most common non-token parameters are
postId,after,cursor,keyword. - All operations in this skill are parameter-driven requests; none require a request body.
How To Work
- Read
generated/operations.mdbefore choosing an endpoint. - Start with one of these operations when it matches the user's request:
getRedditPostDetailV1,getRedditPostCommentsV1,searchRedditV1. - Pick the smallest matching operation instead of guessing.
- Ask the user for any missing required parameter. Do not invent values.
- Call the helper with:
node {baseDir}/bin/run.mjs --operation "<operation-id>" --token "$JUST_ONE_API_TOKEN" --params-json '{"key":"value"}'
Environment
- Required:
JUST_ONE_API_TOKEN - This skill uses
JUST_ONE_API_TOKENonly for authenticated Just One API requests. - Keep
JUST_ONE_API_TOKENprivate. Do not paste it into chat messages, screenshots, or logs. - Get a token from Just One API Dashboard.
- Authentication details: Just One API Usage Guide.
Output Rules
- Start with a plain-language answer tied to the Reddit task the user asked for.
- Include the most decision-relevant fields from the selected endpoint before dumping raw JSON.
- When using
getRedditPostDetailV1, explain why the returned fields answer the user's question. - If the user gave filters such as
postId,after,cursor, echo those back so the scope is explicit. - If the backend errors, include the backend payload and the exact operation ID.