GrowMediaMore

API Documentation

Automate your social media growth. Connect your panel to GrowMediaMore instantly using our standard API structure.

https://growmediamore.com/api/v2/

Navigation

Authentication Service List Add Order Order Status User Balance PHP Example

Authentication

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.

Security Warning: Keep your API key secret. Do not share it with anyone. If you suspect it has been compromised, contact support immediately to rotate it.

Service List POST / GET

Returns a complete list of all active services, including their pricing, limits, and refill status.

ParameterDescription
keyYour API Key
actionMust be exactly services
Example Response:
[
  {
    "service": 1,
    "name": "Instagram Followers [High Quality]",
    "type": "Default",
    "category": "Category 1",
    "rate": "0.9000",
    "min": 100,
    "max": 10000,
    "refill": true
  }
]

Add New Order POST

Places a new order securely in real-time. Funds will be deducted from your account balance automatically.

ParameterDescription
keyYour API Key
actionMust be exactly add
serviceService ID (obtained from the Service List)
linkLink to the page/post
quantityAmount you want to order
Example Response (Success):
{
  "order": 23501
}

Check Order Status POST / GET

Check the current delivery status of a specific order.

ParameterDescription
keyYour API Key
actionMust be exactly status
orderThe Order ID returned when you added the order
Example Response:
{
  "status": "In progress",
  "charge": "0.2700",
  "start_count": 350,
  "remains": 50
}

User Balance POST / GET

Check your current account balance programmatically.

ParameterDescription
keyYour API Key
actionMust be exactly balance
Example Response:
{
  "balance": "150.4500",
  "currency": "USD"
}

PHP Code Example

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;
}
?>
WhatsApp
Currency Calci
GMM Currency Rate