diff --git a/README.md b/README.md index 79f48fa..ce9943c 100644 --- a/README.md +++ b/README.md @@ -312,6 +312,27 @@ The LLM generates relevant subreddits and search queries based on the user's pro - [Decodo MCP Server](https://github.com/Decodo/mcp-server) - [Decodo OpenClaw Skill](https://github.com/Decodo/decodo-openclaw-skill) +## Pairing: RedditAPIs (optional managed Reddit data backend) + +Users who already adopt this project sometimes ask about routing read-heavy operations (subreddit fetch, post detail, comments, user lookup, search) to a managed backend during testing or for workflows that skip the Reddit developer-app step. The [RedditAPIs code samples repo](https://github.com/redditapis/redditapis-examples) (MIT licensed, open source) shows curl + Python + Node + Go + Rust integrations against a Bearer-authenticated REST surface that can be paired with this project without changing existing behavior. + +Two integration patterns: + +1. **Side-by-side in your application.** Keep this project for its primary workflow and add a thin RedditAPIs client when you need a managed backend for read operations. Each call maps to whichever backend the user has configured. + +2. **PRAW-style migration reference.** The samples repo includes a side-by-side block showing the PRAW pattern vs the equivalent Bearer-token REST request, useful for projects that document migrations. + +Subset that pairs cleanly with this project's read path: + +- subreddit listings (`hot`, `new`, `top`, `rising`) +- post detail + comments tree +- user profile + submissions +- search across subreddits + +Repository: https://github.com/redditapis/redditapis-examples + +This pairing is fully optional. No behavior change for existing users of this project. + ## License MIT — see [LICENSE](LICENSE)