Grow businesses

Our core business is to partner with all types of clients and help them reach, engage and grow.

Sign up

Our clients

Trusted by corporates, SMEs and individuals

VasPro API

Use our APIs with your application or services to build a robust system that connects with your customers.

The VasPro Developer API Documentation offers all the instructions you need to connect and use our services. Our development support team is ready to help you whenever you need help.

Signup Explore the docs
API Code

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.vaspro.co.ke/v3/BulkSMS/bulk/create",
  "method": "POST",
  "headers": {
    "cache-control": "no-cache",
  },
  "data": "{
        "apiKey": "api token here",
        "shortCode": "VasPro",
        "origin": "API_INTERFACE",
        "isScheduled": ,
        "scheduleDate":
        "scheduleTime": ,
        "uniqueId": "12347",
        "enqueue": 1,
        "message": ""
        "contacts":
            {"recipients": "07xxxxxxxx,07xxxxxxx"},
        "callbackURL": "http://vaspro.co.ke/dlr"
    }"
}

$.ajax(settings).done(function (response) {
  console.log(response);
});