Automate your social media growth. Connect your panel to GrowMediaMore instantly using our standard API structure.
To use the API, you must have an active account with API access enabled. You can generate your unique API key in your account settings.
All API requests must include your key as a parameter.
Returns a complete list of all active services, including their pricing, limits, and refill status.
| Parameter | Description |
|---|---|
key | Your API Key |
action | Must be exactly services |
[
{
"service": 1,
"name": "Instagram Followers [High Quality]",
"type": "Default",
"category": "Category 1",
"rate": "0.9000",
"min": 100,
"max": 10000,
"refill": true
}
]
Places a new order securely in real-time. Funds will be deducted from your account balance automatically.
| Parameter | Description |
|---|---|
key | Your API Key |
action | Must be exactly add |
service | Service ID (obtained from the Service List) |
link | Link to the page/post |
quantity | Amount you want to order |
{
"order": 23501
}
Check the current delivery status of a specific order.
| Parameter | Description |
|---|---|
key | Your API Key |
action | Must be exactly status |
order | The Order ID returned when you added the order |
{
"status": "In progress",
"charge": "0.2700",
"start_count": 350,
"remains": 50
}
Check your current account balance programmatically.
| Parameter | Description |
|---|---|
key | Your API Key |
action | Must be exactly balance |
{
"balance": "150.4500",
"currency": "USD"
}
Use this simple PHP cURL wrapper to connect your script to our API.
<?php
class Api {
public $api_url = 'https://growmediamore.com/api/v2/';
public $api_key = 'YOUR_API_KEY_HERE';
public function order($data) {
$post = array_merge(['key' => $this->api_key, 'action' => 'add'], $data);
return json_decode($this->connect($post));
}
public function status($order_id) {
return json_decode($this->connect([
'key' => $this->api_key,
'action' => 'status',
'order' => $order_id
]));
}
private function connect($post) {
$ch = curl_init($this->api_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
}
// Example Usage:
$api = new Api();
// Add an order
$order = $api->order([
'service' => 1,
'link' => 'https://instagram.com/p/test',
'quantity' => 100
]);
if(isset($order->order)) {
echo "Order placed! ID: " . $order->order;
} else {
echo "Error: " . $order->error;
}
?>