/mpt/holdersmpt-listHoldersReturns the holders for a given MPT issuance, sorted alphabetically by account. The cursor is the last seen account, so pagination is stable across calls. For a single holder's balance, prefer /mpt/holder-balance which is a direct lookup.
| 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 |
|---|---|---|---|
cursor | string | ||
limit | integer | 20 | |
issuanceIdrequired | string | MPT issuance identifier to list holders for. |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | Parent MPT issuance_id (PK part). |
items[]. | string | Holder XRPL address (PK part). |
items[]. | string | Current token balance, decimal string. |
items[]. | boolean | Issuer has authorized this holder. |
items[]. | object | Timestamp when the holder was authorized, Unix-seconds. |
items[]. | integer | Ledger sequence where this holder first appeared. |
items[]. | integer | Ledger sequence of the most recent balance change. |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"issuanceId": "string",
"account": "string",
"balance": "string",
"authorized": false,
"authorizedAt": 1745798400,
"firstSeenLedger": 0,
"lastActivityLedger": 0
}
],
"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": []
}