获取账户总资产估值
<p>[TOC]</p>
<h2>接口描述</h2>
<ul>
<li>获取账户总资产估值(USD)</li>
</ul>
<h2>HTTP请求</h2>
<ul>
<li>GET <code>{{url-asset-service}}/asset/account/{accountType}/getEstimatedBalance</code></li>
</ul>
<h2>请求限流</h2>
<ul>
<li>10次/S</li>
</ul>
<h2>参数类型</h2>
<ul>
<li>Query Params</li>
</ul>
<h2>请求参数</h2>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th style="text-align: left;">说明</th>
<th style="text-align: left;">示例</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">accountType</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">账户类型</td>
<td style="text-align: left;">[trading:交易账户,funding:资金账户]</td>
</tr>
</tbody>
</table>
<h3>请求示例</h3>
<pre><code>curl '{{url-asset-service}}/asset/account/funding/getEstimatedBalance'</code></pre>
<h2>响应参数</h2>
<table>
<thead>
<tr>
<th style="text-align: left;">参数</th>
<th style="text-align: left;">类型</th>
<th style="text-align: left;">描述</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">code</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">返回码</td>
</tr>
<tr>
<td style="text-align: left;">msg</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">消息说明</td>
</tr>
<tr>
<td style="text-align: left;">data</td>
<td style="text-align: left;">array</td>
<td style="text-align: left;">账户总估值</td>
</tr>
</tbody>
</table>
<h3>响应示例</h3>
<pre><code>{
&quot;code&quot;: &quot;0&quot;,
&quot;msg&quot;: &quot;Success&quot;,
&quot;data&quot;: 3000
}</code></pre>
<h2>备注</h2>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>