/richlist/token/{tokenSlug}/timeseriesrichlist-tokenTimeseriesPer-token mirror of /richlist/native/timeseries. Returns a paginated daily time series of the per-token richlist concentration shape (totals + %-of-supply byRange + top-N byPercentile). Pages are ordered oldest → newest internally; cursor walks BACK in time. limit defaults to 30 (max 365); pass the previous response's nextCursor as cursor to fetch the next-older page.
| 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`. |
| Name | Type | Default | Description |
|---|---|---|---|
cursor | string | ||
limit | integer | 30 |
| Field | Type | Description |
|---|---|---|
items | object[] | One point per day, ordered oldest → newest within the page. Empty when the snapshot worker has not yet recorded a snapshot for this token. |
items[]. | string | UTC day bucket the row aggregates, ISO-8601 date. |
items[]. | integer | Non-issuer non-zero holder count for that day. |
items[]. | object | Token total supply observed at snapshot time (decimal string). `null` for days where supply was not yet recorded. |
items[]. | string | Sum of non-issuer holder balances on that day, decimal string. |
items[]. | object[] | Same %-of-supply range buckets as `/richlist/token/{tokenSlug}/info`, materialized per day. |
items[]. | number | Inclusive lower bound for this bucket. XRP-side: balance in XRP. Token-side: balance as a percentage of total supply (e.g. `0.01` = 0.01%). |
items[]. | object | Exclusive upper bound, or `null` for the open-ended top bucket. Same unit as `min`. |
items[]. | integer | Number of accounts whose balance falls inside the half-open `[min, max)` range. |
items[]. | string | Sum of balances of accounts in this bucket, as a decimal string. XRP-side: in XRP. Token-side: in token base units. |
items[]. | object[] | Same top-N percentile thresholds as `/richlist/token/{tokenSlug}/info`, materialized per day. |
items[]. | number | Top-N percentile as a decimal (e.g. `0.01` for "top 1%", `0.0001` for "top 0.01%", `1.0` for the entire population). |
items[]. | integer | Number of accounts in the top-N percentile (= ceil(percentile × totalHolders)). |
items[]. | object | Balance threshold such that every account in the top-N percentile holds at least this amount, as a decimal string. `null` when the dataset is empty. |
nextCursor | object | Opaque cursor for the next-older page, or `null` when this page is the oldest available. Pass it back as `cursor` to walk further back in time. |
{
"items": [
{
"bucketDay": "string",
"totalHolders": 0,
"totalSupply": "string",
"totalHeld": "string",
"byRange": [
{
"min": 0,
"max": 0,
"accountCount": 0,
"sumBalance": "string"
}
],
"byPercentile": [
{
"percentile": 0,
"accountCount": 0,
"balanceAtOrAbove": "string"
}
]
}
],
"nextCursor": "string"
}| 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": []
}