Documentation Panel API v2
A single endpoint compatible with the standard SMM panel API. Send form-encoded or JSON POST requests, authenticate with your child-panel API key and drive the whole catalog programmatically.
https://koupitsledujici.cz/api/v2Every request carries two required parameters: key (the API key from your child panel) and action (one of services, add, status, balance). You will find the key in your account under the Child panel section.
services
Returns the full list of services you can resell, including current rates and quantity limits.
| Field | Meaning |
|---|---|
| service | Numeric service ID used in the add action. |
| name | Human-readable service name. |
| rate | Price per 1 000 units in CZK. |
| min | Minimum order quantity. |
| max | Maximum order quantity. |
| refill | Whether the service carries a refill guarantee. |
curl -X POST https://koupitsledujici.cz/api/v2 \
-d "key=TVUJ_API_KLIC" \
-d "action=services"[
{
"service": 1,
"name": "Instagram sledující – Kvalitní",
"rate": "149.00",
"min": 100,
"max": 50000,
"refill": true
},
{
"service": 2,
"name": "TikTok zhlédnutí – Standard",
"rate": "29.00",
"min": 500,
"max": 1000000,
"refill": false
}
]add
Places a new order. The charge is deducted from your balance and delivery starts automatically.
| Parameter | Meaning |
|---|---|
| service | Service ID from the services action. |
| link | Public URL of the profile or post to deliver to. |
| quantity | Ordered quantity within the service's min/max limits. |
curl -X POST https://koupitsledujici.cz/api/v2 \
-d "key=TVUJ_API_KLIC" \
-d "action=add" \
-d "service=1" \
-d "link=https://www.instagram.com/tvujprofil/" \
-d "quantity=1000"{
"order": "KS-8421-XQ"
}The returned order ID is what you pass to the status action.
status
Returns the live state of an order — how much was delivered, how much remains and what it cost.
| Field | Meaning |
|---|---|
| charge | Amount charged for the order. |
| start_count | Counter value at the moment delivery started. |
| status | Order state — see the vocabulary below. |
| remains | Quantity still to be delivered. |
| progress | Delivery progress from 0 to 1. |
| currency | Currency of the charge (CZK). |
curl -X POST https://koupitsledujici.cz/api/v2 \
-d "key=TVUJ_API_KLIC" \
-d "action=status" \
-d "order=KS-8421-XQ"{
"charge": "149.00",
"start_count": 1205,
"status": "In progress",
"remains": 430,
"progress": 0.57,
"currency": "CZK"
}balance
Returns your current credit balance, so your software can stop selling before it runs dry.
curl -X POST https://koupitsledujici.cz/api/v2 \
-d "key=TVUJ_API_KLIC" \
-d "action=balance"{
"balance": "1250.00",
"currency": "CZK"
}Status vocabulary
The status field of an order always carries one of these values:
| Status | Meaning |
|---|---|
| Pending | The order was accepted and is waiting to start. |
| In progress | Delivery is running. |
| Partial | Delivery stopped before completion; the undelivered part is refunded to your balance. |
| Completed | The full quantity was delivered. |
| Canceled | The order was canceled and fully refunded to your balance. |
No API key yet?
Provision your child panel in your account — the key is issued instantly.