The DropReply CLI lets you publish replies on Reddit and X, check status, and manage your account without leaving your terminal.
Install the CLI globally with npm, then authenticate with your API key.
# Set your API key $ export DROPREPLY_API_KEY=drpl_live_your_api_key # Publish a reply on Reddit $ dropreply reply \ --platform reddit \ --url "https://reddit.com/r/webdev/comments/abc123/..." \ --content "Great question! I've been using Next.js for this exact use case..." Reply Submitted ID: rpl_7f3a9b2c Status: queued # Check the reply status $ dropreply status rpl_7f3a9b2c ID: rpl_7f3a9b2c Status: published Platform: reddit
Manage your entire reply workflow from the command line.
Publish a new reply. Specify platform (reddit or twitter), target URL, and content. Returns a reply ID for tracking.
Check the status of a reply by ID. See if it's queued, publishing, published, or failed with error details.
List your recent replies with status, platform, and timestamps. Supports filtering by platform and status.
Check available managed accounts by platform. See how many Reddit and Twitter accounts are ready.
View your current usage stats for the billing period. Replies used, remaining quota, and plan details.
Submit an upvote/like job. Specify platform and target URL to boost visibility on Reddit or X.
Integrate reply publishing into any workflow that supports shell commands.
Publish replies as part of your deployment pipeline. Announce releases, respond to feedback, or share updates automatically after each deploy.
Schedule reply publishing with cron. Run at specific times for maximum engagement, or set up periodic health checks on your published replies.
Compose complex workflows in bash. Chain reply creation with content generation, or batch process replies from a CSV file.
Script health checks for your published replies. Alert on failures, track success rates, and ensure your content stays live.
Test reply publishing during development. Use test API keys to validate content and format before going live.
Trigger replies from webhooks, GitHub Actions, Zapier CLI, or any automation tool that can execute shell commands.
Combine CLI commands with shell scripting for powerful automation.
#!/bin/bash # Publish replies to multiple Reddit threads URLS=( "https://reddit.com/r/SaaS/comments/abc123/best-tools-for-outreach" "https://reddit.com/r/startups/comments/def456/how-do-you-handle-marketing" "https://reddit.com/r/webdev/comments/ghi789/what-apis-are-you-using" ) for url in "${URLS[@]}"; do REPLY_ID=$(dropreply reply \ --platform reddit \ --url "$url" \ --content "We built an API for this exact use case..." \ --json | jq -r '.id') echo "Queued: $REPLY_ID for $url" done # Check usage after batch dropreply usage