SDKs

Kindly offers an SDK's for node.js to help you get started with your Kindly integration using the Application API. The SDK currently do not implement the full Kindly Application API.

Node

We have a simple JavaScript-library on npm, perfect for node applications.

Just install it in your project:

npm install kindly-js --save

... and start using it:

const kindly = require("kindly-js");
kindly.API_KEY = "YOUR API KEY";
kindly.send({
  user_id: "abc123", // User/chat identifier
  message: "Message to bot" // What to ask bot
});

We'll POST the bot reply to the webhook you specified when getting started setting up the application.

Check out the source code on GitHub.

Last updated