用户余额查询
<p><h3 id="h3-u5E73u53F0u7B80u4ECB"><a name="简要描述:" class="reference-link"></a><span class="header-link octicon octicon-link"></span>简要描述:</h3>用户余额查询接口</p>
<h4><strong>请求URL:</strong></h4>
<pre><code>http(s)://平台域名/api/v1/user/info</code></pre>
<h4><strong>请求方式:</strong></h4>
<pre><code>POST</code></pre>
<h4><strong>请求参数:</strong></h4>
<table>
<thead>
<tr>
<th>Header 参数</th>
<th>类型</th>
<th>是否必填</th>
<th>描述</th>
<th>示例值</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sign</td>
<td>string</td>
<td>是</td>
<td>签名</td>
<td>[点击查看签名规范](<a href="https://www.showdoc.com.cn/2598837475520265/11558607938542754">https://www.showdoc.com.cn/2598837475520265/11558607938542754</a> "点击查看签名规范")</td>
</tr>
<tr>
<td>Timestamp</td>
<td>string</td>
<td>是</td>
<td>13位时间戳(毫秒)</td>
<td>1696644296195</td>
</tr>
<tr>
<td>UserId</td>
<td>string</td>
<td>是</td>
<td>您的用户接口appid</td>
<td>2uIkTrXNdAFc7OKhbRenzjDtgPoZ6s5C</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th>Body 参数</th>
<th>类型</th>
<th>是否必填</th>
<th>描述</th>
<th>示例值</th>
</tr>
</thead>
<tbody>
<tr>
<td>无</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
</tbody>
</table>
<h4><strong>签名示例:</strong></h4>
<pre><code>1696644296195{}apikey</code></pre>
<h4><strong>返回示例:</strong></h4>
<pre><code>{
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;成功&quot;,
&quot;data&quot;: {
&quot;balance&quot;: &quot;8888.88&quot;
}
}</code></pre>
<h4><strong>返回data说明:</strong></h4>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>balance</td>
<td>string</td>
<td>用户余额</td>
</tr>
</tbody>
</table>