The API we maintain has a single constant root element. Really it is up to you. Other alternatives might be a different roots per data return type, different roots for classes, or as you say, different roots per function.
Our API is structured something like this (not that it is a standard or anything):
<product name common root>
<class name>
<function return data>...</function return data>
</class name>
</product name common root>
We also allow batch calling, so this helps with determining which results are which.
<product name common root>
<class name>
<function1 return data>...</function1 return data>
</class name>
<class2 name>
<function2 return data>...</function2 return data>
</class2 name>
</product name common root>