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
/api/v1/wallet/watch-address/list

Request

Query Params

Header Params

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 '/api/v1/wallet/watch-address/list?network=undefined&current=undefined&size=undefined' \
--header 'tenant-id: 1'

Responses

🟢200OK
application/json
查询成功
Bodyapplication/json

Example
{
    "code": 0,
    "msg": "success",
    "data": {
        "records": [
            {
                "id": 1,
                "network": "BNB",
                "address": "0xe835233c...",
                "currency": null,
                "label": "交易所热钱包",
                "webhookUrl": null,
                "status": "ENABLED",
                "createTime": "2026-04-01T12:00:00",
                "updateTime": "2026-04-01T12:00:00"
            },
            {
                "id": 2,
                "network": "TRON",
                "address": "TK87L1qV...",
                "currency": "USDT",
                "label": "合作方结算地址",
                "webhookUrl": null,
                "status": "ENABLED",
                "createTime": "2026-04-02T10:00:00",
                "updateTime": "2026-04-02T10:00:00"
            }
        ],
        "total": 2,
        "current": 1,
        "size": 10
    },
    "ok": true
}
Modified at 2026-05-07 09:40:42
Previous
取消订阅
Next
充值确认通知
Built with