Grow SMM Panel offers a powerful API for resellers and developers who want to automate order placement, balance checking, service synchronization, and order status updates. Our API is designed to be fast, secure, and easy to integrate with websites, applications, and reseller platforms.
API Features
- Instant order placement
- Automatic order status updates
- Balance checking
- Service list synchronization
- Secure API authentication
- Fast response time
- Easy reseller integration
Who Can Use Our API?
Our API is designed for SMM panel owners, developers, digital marketing agencies, and resellers who want to automate their business processes and manage large numbers of orders efficiently.
Benefits of Using Our API
Using the Grow SMM Panel API saves time by eliminating manual order processing. It allows businesses to automate workflows, reduce errors, improve customer experience, and scale operations more efficiently.
API Security
All API requests require secure authentication using your personal API key. Never share your API key publicly. We continuously monitor our systems to ensure reliable and secure API access.
Need Help?
If you experience any API integration issues, our support team is available to help you with setup, troubleshooting, and technical questions.
Grow SMM Panel offers a powerful API for resellers and developers who want to automate order placement, balance checking, service synchronization, and order status updates. Our API is designed to be fast, secure, and easy to integrate with websites, applications, and reseller platforms.
API Features
- Instant order placement
- Automatic order status updates
- Balance checking
- Service list synchronization
- Secure API authentication
- Fast response time
- Easy reseller integration
Who Can Use Our API?
Our API is designed for SMM panel owners, developers, digital marketing agencies, and resellers who want to automate their business processes and manage large numbers of orders efficiently.
Benefits of Using Our API
Using the Grow SMM Panel API saves time by eliminating manual order processing. It allows businesses to automate workflows, reduce errors, improve customer experience, and scale operations more efficiently.
API Security
All API requests require secure authentication using your personal API key. Never share your API key publicly. We continuously monitor our systems to ensure reliable and secure API access.
Need Help?
If you experience any API integration issues, our support team is available to help you with setup, troubleshooting, and technical questions.
SMM Panel API Documentation
API Documentation
| HTTP Method | POST |
| API URL | https://growsmmpanel.com/api/v2 |
| Response format | JSON |
Service list
| Parameters | Description |
|---|---|
| key | Your API key |
| action | services |
Example Response
[
{
"service": 1,
"name": "Followers",
"type": "Default",
"category": "First Category",
"rate": "0.90",
"min": "50",
"max": "10000",
"desc" : "Some Description",
"refill": true
},
{
"service": 2,
"name": "Comments",
"type": "Custom Comments",
"category": "Second Category",
"rate": "8",
"min": "10",
"desc" : "Some Description",
"max": "1500",
"refill": false
}
]
Add order
| Parameters | Description |
|---|---|
| key | Your API key |
| action | add |
| service | Service ID |
| link | Link |
| quantity | Quantity |
| runs (optional) | Runs to deliver |
| interval (optional) | Interval in minutes |
Example Response
{
"order": 23501
}
Order status
| Parameters | Description |
|---|---|
| key | Your API key |
| action | status |
| order | Order ID |
Example Response
{
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
}
Multiple orders status
| Parameters | Description |
|---|---|
| key | Your API key |
| action | status |
| orders | Order IDs separated by comma |
Example Response
{
"1": {
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
},
"10": {
"error": "Incorrect order ID"
},
"100": {
"charge": "1.44219",
"start_count": "234",
"status": "In progress",
"remains": "10",
"currency": "USD"
}
}
Create refill
| Parameters | Description |
|---|---|
| key | Your API key |
| action | refill |
| order | Order ID |
Example Response
{
"refill": "1"
}
Get refill status
| Parameters | Description |
|---|---|
| key | Your API key |
| action | refill_status |
| refill | Refill ID |
Example Response
{
"status": "Completed"
}
Cancel order
| Parameters | Description |
|---|---|
| key | Your API key |
| action | cancel |
| order | Order ID |
Example Response
{
"cancel": 1
}
User balance
| Parameters | Description |
|---|---|
| key | Your API key |
| action | balance |
Example Response
{
"balance": "100.84292",
"currency": "USD"
}
Get username
| Parameters | Description |
|---|---|
| key | Your API key |
| action | get-username |
Example Response
{
"username": "username123",
}