/accounts/{address}/flow-historyaccount-listFlowHistoryReturns per-asset, per-event-type daily rollups. Used by UIs that render a stacked-bar breakdown of inflows vs. outflows (fees, payments, rewards, etc.).
| 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 |
|---|---|---|---|
addressrequired | string |
| Name | Type | Default | Description |
|---|---|---|---|
cursor | string | ||
limit | integer | 20 | |
assetRef | string | ||
startTime | integer | ||
endTime | integer |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | |
items[]. | string | |
items[]. | integer | Bucket start timestamp, Unix-seconds. |
items[]. | object | |
items[]. | string | |
items[]. | integer | |
items[]. | string | Event kind (payment_in/payment_out/fee/…). |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"address": "string",
"assetRef": "string",
"bucket": 1745798400,
"balanceAfter": "string",
"netDelta": "string",
"eventCount": 0,
"eventType": "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": []
}