/token/{tokenSlug}/holders/infotoken-holderConcentrationReturns 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.
| Name | Location | Details |
|---|---|---|
BearerAuth | Authorization header · bearer | JWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`. |
| Name | Type | Default | Description |
|---|---|---|---|
tokenSlugrequired | string | Natural token identifier in `currency.issuer` form. Example: `USD.rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B`. |
| Field | Type | Description |
|---|---|---|
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. |
{
"top5Pct": 24.6,
"top10Pct": 38.4,
"top20Pct": 52.1,
"top100Pct": 79.8,
"totalHolders": 142
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "BAD_REQUEST",
"message": "Invalid input data",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "UNAUTHORIZED",
"message": "Authorization not provided",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "FORBIDDEN",
"message": "Insufficient access",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "NOT_FOUND",
"message": "Not found",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}