Upvote posts and comments on Reddit and X with a single API call. Increase visibility of your content using aged accounts.
Pass the URL of a post or comment and the number of upvotes. We handle the rest.
Pass any Reddit post, Reddit comment, or X tweet URL along with the desired upvote count.
Unique aged accounts upvote your content with staggered timing and random delays for natural patterns.
Higher upvotes push your content up in Reddit's ranking algorithm and X's reply ordering.
Same authentication, same style as the Reply API.
# Upvote a Reddit comment curl -X POST https://api.dropreply.com/v1/upvote \ -H "Authorization: Bearer drpl_live_xxx" \ -H "Content-Type: application/json" \ -d '{ "platform": "reddit", "target_url": "https://reddit.com/r/SaaS/comments/.../comment/abc123" }' # Response # { # "id": "upv_x1y2z3", # "status": "queued", # "platform": "reddit", # "credit_cost": 0.25 # }
import DropReply from '@dropreply/sdk'; const client = new DropReply('drpl_live_xxx'); // Upvote a Reddit comment const result = await client.upvote({ platform: 'reddit', target_url: 'https://reddit.com/r/SaaS/comments/.../comment/abc123', }); console.log(result.credit_cost); // 0.25 // Like a tweet on X await client.upvote({ platform: 'twitter', target_url: 'https://x.com/user/status/123456789', });
from dropreply import DropReply client = DropReply("drpl_live_xxx") # Upvote a Reddit comment result = client.upvote( platform="reddit", target_url="https://reddit.com/r/SaaS/comments/.../comment/abc123", ) print(result["credit_cost"]) # 0.25 # Like a tweet on X client.upvote( platform="twitter", target_url="https://x.com/user/status/123456789", )
Strategic upvoting increases the reach of your published content.
After publishing a reply via the Reply API, upvote it to push it above other comments in the thread.
Reddit sorts comments by upvotes. A few early upvotes can push your reply to the top of a thread with hundreds of comments.
Comments with upvotes are perceived as more credible. Even 3-5 upvotes significantly changes how other users read your comment.
Let your AI agent publish a reply, then automatically upvote it in the same pipeline.
Publish a reply, then boost it. Two API calls, maximum impact.