RedScrape API Documentation
Complete reference for the RedScrape public proxy API manage accounts, purchase plans, and control proxies programmatically.
RedScrape API
Welcome to the RedScrape API documentation. Build powerful proxy integrations and automate your proxy management with our public REST API.
What can you do?
- Browse products list available proxy types, pricing tiers, and data packages
- Purchase plans buy proxy subscriptions using your wallet balance
- Manage subscriptions rename, whitelist IPs, reset passwords, top-up data
- Monitor usage track data consumption across all your proxies
- Automate billing deposit funds, verify coupons, view invoices
- Resell proxies build your own proxy platform on top of RedScrape
Authentication
All authenticated endpoints require an X-API-Key header. Generate your API key from Dashboard → Settings → API Keys.
curl -H "X-API-Key: your_api_key" \
https://api.redscrape.com/api/public/account/meBase URL
https://api.redscrape.com/api/publicRate Limits
| Endpoint | Limit |
|---|---|
| Purchase | 10 requests / minute |
| Deposit | 5 requests / minute |
| Coupon verify | 10 requests / minute |
| All other endpoints | No explicit limit |
Quick Start
1. Check your account
curl -H "X-API-Key: your_api_key" \
https://api.redscrape.com/api/public/account/me2. Browse products
curl https://api.redscrape.com/api/public/products/3. Buy a plan
curl -X POST -H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{"product_slug":"datacenter-proxy","billing_period":"monthly","payment_method":"wallet"}' \
https://api.redscrape.com/api/public/payments/purchase