API Docs

HTTP MethodPOST
API URLhttp://16.192.82.15/api/v1.php
API KEYLogin to view API KEY
Response formatJSON

Add order

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
commentsComments list optional
runsRuns to deliver optional
intervalInterval in minutes optional
Example success response
{ "order": 23501 }
Example error response
{ "error": "Incorrect service type" }

Services List

ParametersDescription
keyYour API key
actionservices
Example response
[ { "service": 1, "name": "Instagram Followers", "type": "Default", "category": "Instagram", "rate": "0.90", "min": "50", "max": "10000" }, { "service": 2, "name": "YouTube Views", "type": "Default", "category": "YouTube", "rate": "8", "min": "100", "max": "15000" } ]

Order status

ParametersDescription
keyYour API key
actionstatus
orderOrder ID
Example response
{ "charge": "0.27819", "start_count": "3572", "status": "Partial", "remains": "157", "currency": "INR" }

Multiple Order status

ParametersDescription
keyYour API key
actionstatus
ordersOrder IDs separated by comma
Example response
{ "1": { "charge": "0.27819", "start_count": "3572", "status": "Partial", "remains": "157", "currency": "INR" }, "10": { "error": "Incorrect order ID" } }

Balance

ParametersDescription
keyYour API key
actionbalance
Example response
{ "balance": "10000", "currency": "INR" }

Refill

ParametersDescription
keyYour API key
actionrefill
orderOrder ID
Example response
{ "status": "Success", "message": "Your order successfully added for refill." }

Cancel

ParametersDescription
keyYour API key
actioncancel
orderOrder ID
Example response
{ "status": "Success", "message": "Your order was successfully marked for cancellation." }

Example of PHP code

<?php $api_url = "http://16.192.82.15/api/v1.php"; $api_key = "YOUR_API_KEY"; $data = [ "key" => $api_key, "action" => "add", "service" => 123, "link" => "https://instagram.com/example", "quantity" => 1000 ]; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $api_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); $response = curl_exec($ch); curl_close($ch); echo $response; ?>

Terms & Conditions Privacy Policy Refund Policy About Us

© 2026 QUANT SMM. All Rights Reserved.