Developer API Documentation
Integrate our automated SMM services directly into your own website.
API General Parameters
| Parameter | Type | Description |
|---|---|---|
API URL |
POST | https://rishismm.com/api/v1 |
key |
string |
Your unique api key. |
action |
string |
Supported values: services, add, status, balance |
1. Retrieve Active Services
Fetch list of all available services on the SMM Panel.
action: "services"
key: "YOUR_API_KEY"
Response JSON:
[
{
"service": 1,
"name": "Instagram Followers [High Quality]",
"type": "Default",
"category": "Instagram Followers",
"rate": 55.40,
"min": 100,
"max": 10000,
"description": "Instant start, lifetime guarantee."
}
]
2. Place New Order
Submit an engagement order. Funds are deducted automatically from your user balance.
action: "add"
key: "YOUR_API_KEY"
service: 1
link: "https://instagram.com/p/yourpost"
quantity: 1000
Response JSON:
{
"order": 45892
}
3. Check Order Status
Query the tracking status, remains, and start count of an order. You can also pass a comma-separated list of order IDs in the orders parameter to check multiple status parameters simultaneously.
action: "status"
key: "YOUR_API_KEY"
order: 45892
Response JSON:
{
"charge": 55.4000,
"start_count": 1420,
"status": "Processing",
"remains": 1000,
"currency": "INR"
}
4. Check Account Balance
Retrieve your current balance and panel base currency.
action: "balance"
key: "YOUR_API_KEY"
Response JSON:
{
"balance": 750.4500,
"currency": "INR"
}