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/v2

Get list of all available services

Parameters

NameTypeRequiredDescription
keystringYesYour API key
actionstringYes"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/v2

Place a new order

Parameters

NameTypeRequiredDescription
keystringYesYour API key
actionstringYes"add"
serviceintegerYesService ID from services list
linkstringYesURL of the target profile/post
quantityintegerYesQuantity (within min–max range)

Response

{ "order": 12345 }
POST/api/v2

Get order status

Parameters

NameTypeRequiredDescription
keystringYesYour API key
actionstringYes"status"
orderintegerYesOrder ID

Response

{
  "charge": "1.20",
  "start_count": "1500",
  "status": "In progress",
  "remains": "400",
  "currency": "USD"
}
POST/api/v2

Get your current balance

Parameters

NameTypeRequiredDescription
keystringYesYour API key
actionstringYes"balance"

Response

{ "balance": "152.40", "currency": "USD" }

Error Responses

ErrorDescription
Invalid keyAPI key is missing or incorrect
Invalid actionThe action parameter is not recognized
Incorrect order IDThe order ID does not exist or belong to your account
Insufficient fundsYour balance is too low to place this order
Invalid serviceThe service ID is invalid or disabled
Invalid quantityQuantity is outside the allowed min/max range