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.

You must be logged in to view your API Key.

Log in or Sign up to get started.

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
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
commentsList 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
keyYour API key
actionstatus
orderOrder 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"
}