/platform/statsplatform-statsReturns a single snapshot of platform metrics: catalog counts (tokenCount, nftCount, activeCollections) plus rolling trade activity over the trailing windowHours (volumeXrpDrops, tradeCount). Volume and trade counts only cover trades carrying a SourceTag — unattributed trades are excluded by construction. Catalog counts are live totals across indexed tokens, non-burned NFTs, and collections with at least one non-burned NFT.
| 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 |
|---|---|---|---|
windowHours | integer | 24 |
| Field | Type | Description |
|---|---|---|
tokenCount | integer | Total indexed IOU tokens. |
nftCount | integer | Total indexed non-burned NFTs. |
activeCollections | integer | Collections with at least one non-burned NFT. |
volumeXrpDrops | string | Sum of attributed trade volume over the trailing window. Decimal string — excludes trades without a SourceTag. |
tradeCount | integer | Sum of attributed trade count over the trailing window. Excludes unattributed trades (SourceTag is NULL). |
windowHours | integer | Echoed trailing-window size used for the volume / trade-count fields. |
{
"tokenCount": 12483,
"nftCount": 8921403,
"activeCollections": 14237,
"volumeXrpDrops": "4218750000000",
"tradeCount": 18452,
"windowHours": 24
}| 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": []
}