/token/holder-concentration/batchtoken-holderConcentrationBatchPOST batch variant of /token/{tokenSlug}/holder-concentration. Accepts { slugs: [...] } (max 100); returns per-slug { top5Pct, top10Pct, top20Pct, top100Pct, totalHolders }. Uses the same non-issuer, non-zero-balance trustline filter as the single-slug endpoint.
| Name | Location | Details |
|---|---|---|
BearerAuth | Authorization header · bearer | JWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`. |
| Field | Type | Description |
|---|---|---|
slugsrequired | string[] | Array of token slugs in `currency.issuer` form (max 100 per request). Per-slug parse / lookup failures surface as `{ slug, data: null }` so a single bad slug doesn't take down the rest. |
{
"slugs": [
"string"
]
}| Field | Type | Description |
|---|---|---|
items | object[] | One entry per input slug, in the same order as the request. Always has the same length as `input.slugs`. |
items[]. | string | The token slug that produced this row (echoed from the request). |
items[]. | object | Per-slug response, or `null` when the slug is malformed / unknown / the per-slug query threw. |
{
"items": [
{
"slug": "string",
"data": {
"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": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}