/network/accounts-churnnetwork-accountsChurnNetwork-wide account churn aggregated into hourly or daily buckets. Each bucket reports sums of accounts_created and accounts_deleted plus per-ledger peaks — useful for spotting airdrop waves or spam bursts.
| 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 |
|---|---|---|---|
interval | enum<string> | "hourly" | Available hourlydaily |
startTime | integer | ||
endTime | integer | ||
limit | integer | 500 |
| Field | Type | Description |
|---|---|---|
items | object[] | |
items[]. | integer | Start of the aggregation bucket, Unix-seconds. |
items[]. | number | New accounts funded in the bucket. |
items[]. | number | Accounts deleted in the bucket. |
items[]. | number | Max new accounts in any single ledger inside the bucket. |
items[]. | number | Max deletions in any single ledger inside the bucket. |
items[]. | number | Number of ledgers sampled. |
{
"items": [
{
"bucket": 1745712000,
"newAccounts": 142,
"deletedAccounts": 8,
"peakLedgerNew": 14,
"peakLedgerDeleted": 2,
"sampleCount": 360
},
{
"bucket": 1745715600,
"newAccounts": 187,
"deletedAccounts": 5,
"peakLedgerNew": 19,
"peakLedgerDeleted": 1,
"sampleCount": 360
}
]
}| 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": []
}