/mpt/transfersmpt-listTransfersReturns the transfer history for a given MPT issuance, ordered by ledger close time (newest first). The cursor is the transaction hash of the previous page's last item. Combine with listHolders to reconstruct a per-account activity view.
| 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 transfers for. |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | Transaction hash (primary key). |
items[]. | integer | Ledger sequence of the transfer. |
items[]. | string | Parent MPT issuance_id. |
items[]. | string | Sender XRPL address. |
items[]. | string | Receiver XRPL address. |
items[]. | string | Transfer amount, decimal string. |
items[]. | string | Transfer kind: `mint` | `burn` | `transfer` | `clawback`. |
items[]. | integer | Ledger close time, Unix-seconds. |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"txHash": "string",
"ledgerIndex": 0,
"issuanceId": "string",
"fromAccount": "string",
"toAccount": "string",
"amount": "string",
"transferType": "string",
"closeTime": 1745798400
}
],
"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": []
}