通过Ajax请求获取ContentBuilder列表视图

I'm using Joomla 3 with Crosstec Content Builder Extension and I created a list view for Fron-end users and it's working successfully without any problem:

http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=list&id=6

I want to get the extension result via Ajax request without the full website but I'm not able to find the right URL to achieve this behavior.

I tried so many stuff including:

http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=list&id=6&format=raw
http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=ajax&id=6

I hope some can help me.

EDIT:

jQuery.ajax({
     type: "GET",
     url: "http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=list&id=6&format=raw",
     success: function (msg) {
         alert(msg);
     }
 });

If you want to load only the component's html content add to the URL tmpl=component

http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=list&id=6&tmpl=component