获取账户余额

获取余额

获取余额的方法返回当前账户余额。

请求

URL

https://api.belurk.com/accounts/get-balance

发送方法

GET

CURL

  1. 1.curl --location 'https://api.belurk.com/accounts/get-balance'
  2. 2.--header 'x-api-token: {{API_TOKEN}}'

成功响应

响应状态: HTTP 200 OK

  1. 1.{
  2. 2. "data": {
  3. 3. "balance": "0"
  4. 4. }
  5. 5.}

失败响应

响应状态: HTTP 401 未授权

  1. 1.{
  2. 2. "data": null
  3. 3. "error": "Unauthorized"
  4. 4.}