1. 错误码
錢包中台服務
  • 用户钱包
    • 创建用户钱包
      POST
    • 查询用户信息
      GET
    • 查询用户充值地址
      GET
  • 提现
    • 发起提现
      POST
    • 查询提现记录
      GET
    • 查询单笔提现
      GET
  • 地址订阅
    • 订阅监控地址
      POST
    • 修改订阅
      PUT
    • 取消订阅
      DELETE
    • 查询订阅列表
      GET
  • Webhook 回调
    • 充值确认通知
      POST
    • 提现成功通知
      POST
    • 监控地址到账通知
      POST
    • 提现拒绝通知
      POST
  • 错误码
    • 错误码说明
      GET
  • 支持的链与币种
    • 链与币种说明
      GET
  • 租户余额
    • 查询所有币种余额
      GET
    • 查询单币种余额
      GET
  • Schemas
    • CreateAccountRequest
    • BaseResponse
    • WithdrawalApplyDTO
    • WatchAddressDTO
    • R_UserAccountResp
    • UserAccountResp
    • WithdrawalVO
    • R_WithdrawalRequest
    • PageResult_WithdrawalRequest
    • PageResult_WithdrawalVO
    • WithdrawalRequest
    • WalletAccountUser
    • R_Page_WithdrawalRequest
    • WebhookPayload_DepositConfirmed
    • WalletUserBalance
    • R_Object
    • WebhookPayload_WithdrawalSuccess
    • WatchAddressResp
    • WebhookPayload_WatchDeposit
    • TenantBalanceVO
    • WebhookPayload_WithdrawalEvent
  1. 错误码

错误码说明

GET
/errors

HTTP 状态码#

HTTP Code说明
200请求成功(业务成功或失败都返回 200,通过 code 区分)
429请求限流
500服务器内部错误

业务 code#

code说明
0成功
1业务错误(见 msg 字段)
401认证失败
429限流

常见错误 msg#

msg触发场景
Insufficient tenant balance提现金额超过租户可用余额
提现金额必须大于 0amount ≤ 0
User not foundexternalUserId 不存在
Unsupported chain: XXX不支持的链标识
Invalid EVM address format. Expected: 0x + 40 hex charsEVM 地址格式错误
Invalid TRON address format. Expected: Base58Check starting with TTRON 地址格式错误
Invalid Solana address format. Expected: Base58, 32-44 charsSolana 地址格式错误
Watch address already exists重复订阅同一地址
Watch address not found订阅 ID 不存在或不属于当前租户
Invalid network: XXX. Supported: [BNB, ETH, ...]不支持的链标识

错误响应示例#

{
  "code": 1,
  "msg": "Insufficient tenant balance",
  "data": null,
  "ok": false
}

Request

None

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/errors'

Responses

🟢200
错误码文档(仅说明用途,非实际接口)
This response does not have a body.
Modified at 2026-05-07 09:40:42
Previous
提现拒绝通知
Next
链与币种说明
Built with