Sandbox version
For experimental use only. Proceed with caution.
tokens
Get holder concentration metrics for a token
get
/token/{tokenSlug}/holders/info
operationId: token-holderConcentration

Returns cumulative ownership percentages for the top 5, 10, 20, and 100 non-issuer holders of the token, plus the total number of holders with a non-zero balance. Percentages are computed against the token's totalSupply; the issuer account is excluded from the ranking because its negative balance mirrors outstanding supply rather than being a holder position.

Unlock protected endpoints

Enter your Bearer token once to enable every protected route in this API reference.

HTTP bearer

Saved for this browser tab only. The credential is never sent until you test an endpoint.

Authorizations
NameLocationDetails
BearerAuthAuthorization header · bearerJWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`.
Path Parameters
NameTypeDefaultDescription
tokenSlug
required
string
Natural token identifier in `currency.issuer` form. Example: `USD.rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B`.
Responses
200
application/json
Successful response
FieldTypeDescription
top5Pct
number
Cumulative percentage of circulating supply held by the top 5 non-issuer holders (0–100). Returns 0 when totalSupply is unknown or no holders exist.
top10Pct
number
Cumulative percentage held by the top 10 non-issuer holders (0–100).
top20Pct
number
Cumulative percentage held by the top 20 non-issuer holders (0–100).
top100Pct
number
Cumulative percentage held by the top 100 non-issuer holders (0–100). Capped at the number of tracked holders when fewer than 100 exist.
totalHolders
integer
Total number of non-issuer trustlines with a non-zero balance for the token.
Example
Json
{
  "top5Pct": 24.6,
  "top10Pct": 38.4,
  "top20Pct": 52.1,
  "top100Pct": 79.8,
  "totalHolders": 142
}
400
application/json
Invalid input data
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "BAD_REQUEST",
  "message": "Invalid input data",
  "issues": []
}
401
application/json
Authorization not provided
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "UNAUTHORIZED",
  "message": "Authorization not provided",
  "issues": []
}
403
application/json
Insufficient access
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "FORBIDDEN",
  "message": "Insufficient access",
  "issues": []
}
404
application/json
Not found
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "NOT_FOUND",
  "message": "Not found",
  "issues": []
}
500
application/json
Internal server error
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "Internal server error",
  "issues": []
}