Skip to Content
API代币获取 TRC10 代币持有者

获取 TRC10 代币持有者

1. 概述与典型用途

返回 TRC10 代币的持有者列表,默认按持有量降序排列。

  • 典型用途:TRC10 代币持有者排行、大户分析。
  • 何时不要用:查询 TRC20/TRC721/TRC1155 代币持有者用「获取 TRC20/TRC721/TRC1155 代币持有者」。

2. 接口与鉴权

GET /api/tokenholders

Base URL 与鉴权见 公共网络与鉴权说明

3. 请求

参数类型必填默认说明
addressstringTRC10 发行方地址或代币 ID
holder_addressstringTRC10 持有者地址
startinteger0起始编号;start + limit ≤ 10000
limitinteger10每页数量,最大 50
sortstring-balance排序:-balance 降序,balance 升序

4. 响应

顶层

字段类型是否必返说明单位/精度
totalinteger必返命中总数(上限 10000)
rangeTotalinteger必返真实持有者总数
contractMapobject必返地址 → 是否为合约的映射
contractInfoobject可选合约地址 → 标签信息(涉及合约地址时有)
account_numberinteger可选账户总数(仅 TRX 即 address=_ 时有)
last_24h_account_changeinteger可选24 小时账户数变化(仅 TRX 时有)
dataarray必返持有者列表,见下

data[] 元素(TRX 即 address=_ 时)

字段类型是否必返说明单位/精度
addressstring必返持有者地址
balanceinteger必返质押票权余额(sun)sun
totalBalanceinteger必返总余额(含 unstaking,sun)sun
unstakingBalanceinteger必返解质押中的余额(sun)sun
powerinteger必返投票权力
trxRatiostring必返占全网 TRX 比例(字符串高精度)小数
indexinteger必返排列序号
updateTimeinteger必返最后更新时间毫秒时间戳 ms
latestOperationTimeinteger必返最近操作时间毫秒时间戳 ms
srTagboolean必返是否为超级代表
srNamestring必返超级代表名称(非 SR 时为空字符串)
foundationTagboolean必返是否为基金会地址
addressTagLogostring必返地址标签 Logo URL(可为空字符串)
analysisShowboolean必返是否在分析中显示

5. 错误

HTTP 状态码见 公共错误说明。本接口要点:

  • address 为必填参数:不传时返回空数据。
  • start + limit 上限为 10000
  • 空结果 ≠ 错误:无命中返回 200 + data: []
最后更新于: