Search subreddits (legacy)
documentedSearch for subreddits by name/description (legacy endpoint).
GET /api/search_subredditsSubredditsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://oauth.reddit.com/api/search_subreddits" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "User-Agent: keychains-reddit-api/1.0" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Reddit-API-Key: {{REDDIT_API_KEY}}" \
-d '{"exact": {{$exact}}, "include_over_18": {{$include_over_18}}, "include_unadvertisable": {{$include_unadvertisable}}, "query": "{{$query}}", "search_query_id": "{{$search_query_id}}", "typeahead_active": {{$typeahead_active}} }'