API Documentation
Integrate GrowFlow into your own platform. Our API follows the standard SMM panel format.
Overview
Base URL: https://growflow.fun
/api/v2
Method: All requests use POST
Format: application/json or form-encoded
Authentication: Pass your API key in each request body as the key field.
Your API Key
Find your API key in your dashboard → API Key page. Keep it secret — it provides full access to your account.
POST
/api/v2Get list of all available services
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| key | string | Yes | Your API key |
| action | string | Yes | "services" |
Response
[
{
"service": "1",
"name": "Instagram Followers – Real Mix",
"type": "Default",
"rate": "1.20",
"min": "100",
"max": "50000",
"category": "Instagram Followers",
"description": "High quality followers..."
}
]POST
/api/v2Place a new order
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| key | string | Yes | Your API key |
| action | string | Yes | "add" |
| service | integer | Yes | Service ID from services list |
| link | string | Yes | URL of the target profile/post |
| quantity | integer | Yes | Quantity (within min–max range) |
Response
{ "order": 12345 }POST
/api/v2Get order status
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| key | string | Yes | Your API key |
| action | string | Yes | "status" |
| order | integer | Yes | Order ID |
Response
{
"charge": "1.20",
"start_count": "1500",
"status": "In progress",
"remains": "400",
"currency": "USD"
}POST
/api/v2Get your current balance
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| key | string | Yes | Your API key |
| action | string | Yes | "balance" |
Response
{ "balance": "152.40", "currency": "USD" }Error Responses
| Error | Description |
|---|---|
| Invalid key | API key is missing or incorrect |
| Invalid action | The action parameter is not recognized |
| Incorrect order ID | The order ID does not exist or belong to your account |
| Insufficient funds | Your balance is too low to place this order |
| Invalid service | The service ID is invalid or disabled |
| Invalid quantity | Quantity is outside the allowed min/max range |