tokens
Fetch daily holder-count history for many tokens
post
/token/holder-history/batch
operationId: token-holderHistoryBatch

POST batch variant of /token/{tokenSlug}/holder-history. Accepts { slugs: [...], days } (max 100 slugs, default 30 days); returns per-slug daily holder-count rows. Same lower-bound semantics as the single-slug endpoint (CURRENT_DATE − days).

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>`.
Request Body
application/json
required
FieldTypeDefaultDescription
slugs
required
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.
days
integer30
Lookback window in days, applied per slug. Defaults to 30; capped at 365.
Example
Json
{
  "slugs": [
    "string"
  ],
  "days": 30
}
Responses
200
application/json
Successful response
FieldTypeDescription
items
object[]
One entry per input slug, in the same order as the request. Always has the same length as `input.slugs`.
items[].slug
string
The token slug that produced this row (echoed from the request).
items[].data
object
Per-slug response, or `null` when the slug is malformed / unknown / the per-slug query threw.
Example
Json
{
  "items": [
    {
      "slug": "string",
      "data": {
        "items": [
          {
            "bucketDate": "2026-04-23",
            "holderCount": 142,
            "totalSupply": "5000000.000000"
          },
          {
            "bucketDate": "2026-04-24",
            "holderCount": 148,
            "totalSupply": "5000000.000000"
          }
        ],
        "nextCursor": null
      }
    }
  ]
}
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": []
}
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": []
}