Api Documentations
HTTP Method POST
API URL https://wisetask.net.ng/api/v2
API Key Get an API key on the Account page
Response format JSON
Service list
Parameters Description
key Your API key
action services

Example response

            [
    {
        "service": 1,
        "name": "Followers",
        "type": "Default",
        "category": "First Category",
        "rate": "0.90",
        "min": "50",
        "max": "10000",
        "refill": true,
        "cancel": true
    },
    {
        "service": 2,
        "name": "Comments",
        "type": "Custom Comments",
        "category": "Second Category",
        "rate": "8",
        "min": "10",
        "max": "1500",
        "refill": false,
        "cancel": true
    }
]
            
Add order

Example response

            {
    "order": 23501
}
            
Order status
Parameters Description
key Your API key
action status
order Order ID

Example response

            {
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}
            
Multiple orders status
Parameters Description
key Your API key
action status
orders Order IDs (separated by a comma, up to 100 IDs)

Example response

            {
    "1": {
        "charge": "0.27819",
        "start_count": "3572",
        "status": "Partial",
        "remains": "157",
        "currency": "USD"
    },
    "10": {
        "error": "Incorrect order ID"
    },
    "100": {
        "charge": "1.44219",
        "start_count": "234",
        "status": "In progress",
        "remains": "10",
        "currency": "USD"
    }
}
            
Create refill
Parameters Description
key Your API key
action refill
order Order ID

Example response

            {
    "refill": "1"
}
            
Create multiple refill
Parameters Description
key Your API key
action refill
orders Order IDs (separated by a comma, up to 100 IDs)

Example response

            [
    {
        "order": 1,
        "refill": 1
    },
    {
        "order": 2,
        "refill": 2
    },
    {
        "order": 3,
        "refill": {
            "error": "Incorrect order ID"
        }
    }
]
            
Get refill status
Parameters Description
key Your API key
action refill_status
refill Refill ID

Example response

            {
    "status": "Completed"
}
            
Get multiple refill status
Parameters Description
key Your API key
action refill_status
refills Refill IDs (separated by a comma, up to 100 IDs)

Example response

            [
    {
        "refill": 1,
        "status": "Completed"
    },
    {
        "refill": 2,
        "status": "Rejected"
    },
    {
        "refill": 3,
        "status": {
            "error": "Refill not found"
        }
    }
]
            
User balance
Parameters Description
key Your API key
action balance

Example response

            {
    "balance": "100.84292",
    "currency": "USD"
}
            
Fetch Country for Virtual Number
Parameters Description
key Your API key
action fetch_country

Example response


                      {
                        "id": "ng",
                        "name": "NIGERIA",
                        "iso": "ng"
                      },
                      {
                        "id": "us",
                        "name": "UNITED STATES",
                        "iso": "us"
                      }


                    
Fetch Product for Virtual Number
Parameters Description
key Your API key
action fetch_product
country Country id

Example response


                      {
                        "id": "adidas",
                        "name": "Adidas",
                        "count": 46071,
                        "category": "activation"
                      },
                      {
                        "id": "uber",
                        "name": "Uber",
                        "count": 1234,
                        "category": "activation"
                      }

                    
Fetch Price for Virtual Number
Parameters Description
key Your API key
action fetch_price
country Country id
product Product id

Example response


                      {
                      "russia": {
                        "telegram": {
                          "beeline": {
                            "cost": 8.5,
                            "count": 12,
                            "rate": 99.99
                          },
                          "matrix": {
                            "cost": 9.1,
                            "count": 8,
                            "rate": 105.23
                          }
                        }
                      }
                    }


                    
Buy Number for Virtual Number
Parameters Description
key Your API key
action buy
country Country id
product Product id
provider Provider

Example response


                      {
                      "id": 11631253,
                      "phone": "+79000381454",
                      "operator": "beeline",
                      "product": "vkontakte",
                      "price": 21,
                      "status": "PENDING",
                      "expires": "2024-07-17T08:28:38.809469028Z",
                      "sms": [],
                      "created_at": "2024-07-17T08:13:38.809469028Z",
                      "forwarding": false,
                      "forwarding_number": "",
                      "country": "russia"
                    }


                    
Fetch Order of sms for Virtual Number
Parameters Description
key Your API key
action fetch_order
orderid Order id

Example response


                      {
                      "id": 11631253,
                      "created_at": "2025-07-17T10:12:48Z",
                      "phone": "+79000381454",
                      "product": "vkontakte",
                      "price": 21,
                      "status": "RECEIVED",
                      "expires": "2025-07-17T10:32:48Z",
                      "sms": [
                        {
                          "created_at": "2025-07-17T10:25:00Z",
                          "date": "2025-07-17T10:24:00Z",
                          "sender": "VKcom",
                          "text": "VK: 09363 - use this code to reclaim your suspended profile.",
                          "code": "09363"
                        }
                      ],
                      "forwarding": false,
                      "forwarding_number": "",
                      "country": "Russia"
                    }



                    
Cancel Order for Virtual Number
Parameters Description
key Your API key
action cancel_order
orderid Order id

Example response


                      {
                      "id": 11631253,
                      "created_at": "2025-07-17T10:12:48Z",
                      "phone": "+79000381454",
                      "product": "vkontakte",
                      "price": 21,
                      "status": "CANCELED",
                      "expires": "2025-07-17T10:32:48Z",
                      "sms": [
                        {
                          "created_at": "2025-07-17T10:25:00Z",
                          "date": "2025-07-17T10:24:00Z",
                          "sender": "VKcom",
                          "text": "VK: 09363 - use this code to reclaim your suspended profile.",
                          "code": "09363"
                        }
                      ],
                      "forwarding": false,
                      "forwarding_number": "",
                      "country": "Russia"
                    }



                    
Finish Order for Virtual Number
Parameters Description
key Your API key
action finish_order
orderid Order id

Example response


                      {
                      "id": 11631253,
                      "created_at": "2025-07-17T10:12:48Z",
                      "phone": "+79000381454",
                      "product": "vkontakte",
                      "price": 21,
                      "status": "FINISHED",
                      "expires": "2025-07-17T10:32:48Z",
                      "sms": [
                        {
                          "created_at": "2025-07-17T10:25:00Z",
                          "date": "2025-07-17T10:24:00Z",
                          "sender": "VKcom",
                          "text": "VK: 09363 - use this code to reclaim your suspended profile.",
                          "code": "09363"
                        }
                      ],
                      "forwarding": false,
                      "forwarding_number": "",
                      "country": "Russia"
                    }



                    
WhatsApp