v2.0 API
Resellergram API Documentation
Resellergram API is a RESTful service providing programmatic access to social media services. Use our API to place orders, check status, and retrieve service lists.
Base URL
https://resellergram.com/api/v2Response Format
application/jsonImportant Info
Your API key is private and should be kept secret. Regenerate your key immediately from the dashboard if you suspect any compromise.
Authentication
API Key is required for all requests.
You must include your API key as the `key` parameter in all requests. You can find your API key in the dashboard.
curl -X POST "https://resellergram.com/api/v2" \
-d "key=YOUR_API_KEY&action=balance"Rate Limits & Quotas
Limits are applied for system security and stability. Avoid sending too many requests instantly. You will not face any blocks under normal usage.
POST
platforms
Lists active platforms.
action=platformsPOST
services
Lists all active services.
action=servicesPOST
add
Creates a new order.
| Parameter | Description |
|---|---|
| service | Service ID |
| link | Link URL |
| quantity | Quantity |
action=add
service=1
link=http://example.com/post
quantity=1000POST
status
Checks order status.
action=status
order=23501POST
balance
Checks user balance.
action=balanceError Codes
Possible error responses.
{
"error": "Incorrect request"
}