SMM Panel API

Clean API docs for orders, services, status and balance.

Use the endpoint below with your API key. Public responses are kept compatible with standard SMM API clients: balance returns balance/currency, add returns order, and errors return a clear error message.

Base Endpoint
https://www.69a7b993deaa3.goldxost.ru/api/v2

HTTP method: GET or POST. Currency: UZS.

4Main actions
GETSimple requests
POSTForm requests
JSONResponse format
GET / POST

Service List

Returns all active services with IDs, category, price, min/max limits and service type.

ParameterDescription
keyYour API key
actionservices
Example Response
[{"service":1,"name":"Followers","type":"Default","category":"Instagram","rate":"1200","min":"10","max":"10000","refill":true,"cancel":false}]
GET / POST

Add Order

Creates a new order. For Default services send quantity. For Package services quantity is not required.

ParameterDescription
keyYour API key
actionadd
serviceService ID
linkTarget URL or username
quantityRequired for Default and Poll services
answer_numberRequired only for Poll services
Example Response
{"order":23501}
GET / POST

Order Status

Returns one order status, charge, start count, remains and currency.

ParameterDescription
keyYour API key
actionstatus
orderPanel order ID
Example Response
{"order":23501,"status":"In progress","start_count":"120","remains":"80","charge":"2400","currency":"UZS"}
GET / POST

User Balance

Returns API account balance and currency.

ParameterDescription
keyYour API key
actionbalance
Example Response
{"balance":"2182.66","currency":"UZS"}

Request Examples

Balance
curl "https://www.69a7b993deaa3.goldxost.ru/api/v2?key=YOUR_API_KEY&action=balance"

Add Default Order
curl "https://www.69a7b993deaa3.goldxost.ru/api/v2?key=YOUR_API_KEY&action=add&service=1&link=https://example.com/post&quantity=100"

Error Responses

CaseResponse
Invalid API key{"error":"Incorrect API key"}
Invalid service{"error":"Incorrect service ID"}
Low balance{"error":"Not enough funds"}
Invalid order{"error":"Incorrect order ID"}