Sandbox version
For experimental use only. Proceed with caution.
platform
Get platform-wide stats
get
/platform/stats
operationId: platform-stats

Returns 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.

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>`.
Query Parameters
NameTypeDefaultDescription
windowHours
integer24
Responses
200
application/json
Successful response
FieldTypeDescription
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.
Example
Json
{
  "tokenCount": 12483,
  "nftCount": 8921403,
  "activeCollections": 14237,
  "volumeXrpDrops": "4218750000000",
  "tradeCount": 18452,
  "windowHours": 24
}
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": []
}
404
application/json
Not found
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": "NOT_FOUND",
  "message": "Not found",
  "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": []
}