Get bots

Get the list of current chatbots.

Example

client.api.getBots(function(err, result) {
  if (err) return console.error(err);
  console.log(result);
});

Try on JSFiddle.

Returns

[
  {
    id: 29,
    name: 'Buy Bytes with Visa or Mastercard',
    pairing_code: 'A1i/ij0Na4ibEoSyEnTLBUidixtpCUtXKjgn0lFDRQwK@byteball.org/bb#0000',
    description: 'This bot helps to buy Bytes with Visa or Mastercard. The payments are processed by Indacoin. Part of the fees paid is offset by the reward you receive from the undistributed funds.'
  },
  {
    id: 31,
    name: 'World Community Grid linking bot',
    pairing_code: 'A/JWTKvgJQ/gq9Ra+TCGbvff23zqJ9Ec3Bp0XHxyZOaJ@byteball.org/bb#0000',
    description: 'Donate your device’s spare computing power to help scientists solve the world’s biggest problems in health and sustainability, and earn some Bytes in the meantime. This bot allows you to link your Byteball address and WCG account in order to receive daily rewards for your contribution to WCG computations.\n\nWCG is an IBM sponsored project, more info at https://www.worldcommunitygrid.org'
  },
  ...
]

Learn more

Last updated