Documentation
API Documentation
Connect TaskletPay to your SMM Panel or custom application. Our API implements the standard SMM v2 protocol, making it compatible with scripts like Perfect Panel, SmartPanel, and others.
API URL:
https://taskletpay.com/api/v2
HTTP Method: POST
Authentication
Your API Key is required for every request. Pass it as a POST parameter named key.
Service List
Action: services
Example Response
[
{
"service": 1,
"name": "Instagram Follow",
"type": "Default",
"category": "Instagram",
"rate": "50.00",
"min": "10",
"max": "10000",
"refill": true,
"cancel": true
}
]
Add Order
Action: add
| Parameter | Description |
|---|---|
| key | Your API key |
| action | add |
| service | Service ID |
| link | Link to page |
| quantity | Needed quantity |
| comments | List of comments (one per line). Required for "Custom Comments" services. |
Note: For services with type Custom Comments, the comments parameter is mandatory. The system will use the number of provided comments to validate the quantity.
Example Response
{
"order": 23501
}
Order Status
Action: status
| Parameter | Description |
|---|---|
| key | Your API key |
| action | status |
| order | Order ID |
Example Response
{
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "NGN"
}
Note: You can also pass orders (comma separated) to check multiple status.
User Balance
Action: balance
{
"balance": "100.84292",
"currency": "NGN"
}