Api.prototype.getChatMembersCount = function (chatId) {
  return yarl.get(this.url + 'getChatMembersCount', { query: {
    chat_id: chatId
  }, json: true });
};