HstockPlus

Your API Key

Loading...

API Endpoint

https://hstockplus.com/api/v2

All API requests should be sent via HTTP POST to this endpoint.

Services List

Get all available services.

ParameterDescription
keyYour API key
actionservices

Example Request:

curl -X POST https://hstockplus.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=services"

Example Response:

[
  {
    "service": 1,
    "name": "Instagram Followers",
    "type": "Default",
    "category": "Instagram",
    "rate": "0.50",
    "min": 100,
    "max": 10000,
    "refill": true,
    "cancel": false
  },
  {
    "service": 2,
    "name": "Instagram Comments",
    "type": "Custom Comments",
    "category": "Instagram",
    "rate": "5.00",
    "min": 10,
    "max": 1000,
    "refill": false,
    "cancel": false
  }
]

Add Order

Place a standard order with link and quantity.

ParameterDescriptionRequired
keyYour API keyYes
actionaddYes
serviceService IDYes
linkURL or link to the contentYes
quantityQuantity to orderYes

Example Request:

curl -X POST https://hstockplus.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=add" \
  -d "service=1" \
  -d "link=https://instagram.com/username" \
  -d "quantity=1000"

Example Response:

{
  "order": 23501
}

Order Status

Get the status of an order.

ParameterDescription
keyYour API key
actionstatus
orderOrder ID

Example Request:

curl -X POST https://hstockplus.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=status" \
  -d "order=23501"

Example Response:

{
  "status": "In progress",
  "charge": "5.00",
  "start_count": 1000,
  "remains": 500,
  "currency": "USD"
}

Possible Statuses:

PendingIn progressCompletedPartialCanceled

Balance

Get your current balance.

ParameterDescription
keyYour API key
actionbalance

Example Request:

curl -X POST https://hstockplus.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=balance"

Example Response:

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

Error Responses

Common error responses you may encounter.

{"error": "Invalid API key"}
{"error": "Invalid action"}
{"error": "Service ID is required"}
{"error": "Insufficient balance"}
{"error": "Order not found"}

Need help? Contact us at support@hstockplus.com