HstockPlus

Ihr API-Schlüssel

Wird geladen...

API-Endpoint

https://hstockplus.com/api/v2

Alle API-Anfragen sollten über HTTP POST an diesen Endpoint gesendet werden.

Dienstliste

Alle verfügbaren Dienste abrufen.

ParameterDescription
keyYour API key
actionservices

Anfrage-Beispiel:

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

Antwort-Beispiel:

[
  {
    "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
  }
]

Bestellung Hinzufügen

Place a standard order with link and quantity.

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

Anfrage-Beispiel:

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"

Antwort-Beispiel:

{
  "order": 23501
}

Bestellstatus

Den Status einer Bestellung abrufen.

ParameterDescription
keyYour API key
actionstatus
orderOrder ID

Anfrage-Beispiel:

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

Antwort-Beispiel:

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

Mögliche Status:

PendingIn progressCompletedPartialCanceled

Guthaben

Ihr aktuelles Guthaben abrufen.

ParameterDescription
keyYour API key
actionbalance

Anfrage-Beispiel:

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

Antwort-Beispiel:

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

Fehlerantworten

Häufige Fehlerantworten, auf die Sie stoßen könnten.

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

Benötigen Sie Hilfe? Kontaktieren Sie uns unter support@hstockplus.com