Reseller API Integration
Automate your ordering process by connecting your panels directly to our API.
API Actions
Overview
All API queries are processed by sending standard POST requests containing parameters in the form body. Response returns payload in standard JSON format.
| API Endpoint | https://smmzenx.com/api/v1 |
|---|---|
| HTTP Method | POST |
1. Check Account Balance
Retrieve current account wallet balance details.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
key |
String | Yes | Your user API Key (obtain from Account Profile Settings). |
action |
String | Yes | Value must be balance |
Example Response
{
"balance": "250.7500",
"currency": "USD"
}
2. Fetch Services Catalog
Fetch all active services along with rates and ID codes.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
key |
String | Yes | Your user API Key. |
action |
String | Yes | Value must be services |
Example Response
[
{
"service": 1,
"name": "Instagram Real Followers [Speed 10k/Day]",
"category": "Instagram Followers",
"rate": "1.5200",
"min": 100,
"max": 10000,
"type": "Default",
"desc": "Real followers, zero drop rate, 30 days refill guarantee."
},
{
"service": 2,
"name": "YouTube HQ Views [Non-Drop]",
"category": "YouTube Views",
"rate": "2.1000",
"min": 500,
"max": 50000,
"type": "Default",
"desc": "High quality views, instant start, safe for monetization."
}
]
3. Place New Order
Submit an automated order. Deducts price instantly from account balance.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
key |
String | Yes | Your user API Key. |
action |
String | Yes | Value must be add |
service |
Integer | Yes | The service ID from services catalog. |
link |
String | Yes | Link URL (e.g. https://instagram.com/p/xxx) |
quantity |
Integer | Yes | Ordering quantity (must respect min/max limits). |
Example Response (Success)
{
"order": 10526
}
4. Query Order Status
Fetch details regarding start count, remains, and status badge.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
key |
String | Yes | Your user API Key. |
action |
String | Yes | Value must be status |
order |
Integer | Yes | The order ID returned when order was placed. |
Example Response
{
"status": "In progress",
"charge": "0.7600",
"start_count": 1500,
"remains": 450,
"currency": "USD"
}