/mpt/issuancesmpt-listIssuancesReturns the full catalog of multi-purpose token issuances indexed from the ledger, ordered by creation time (newest first). Each row describes the issuance itself — holders and transfers are exposed via the dedicated endpoints.
| 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 |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | MPTokenIssuance ID (hex string). |
items[]. | string | XRPL address of the MPT issuer. |
items[]. | integer | Decimal places for display (e.g. 6 means 1,000,000 raw = 1 display unit). |
items[]. | integer | Transfer fee in basis points (0–10000). |
items[]. | object | |
items[]. | boolean | Holders must be explicitly authorized by the issuer. |
items[]. | boolean | Issuer is permitted to lock holder balances. |
items[]. | boolean | Issuer is permitted to clawback tokens from holders. |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | integer | Ledger sequence where the issuance was created. |
items[]. | integer | Record creation timestamp, Unix-seconds. |
items[]. | object | |
items[]. | string | Current outstanding supply (maintained incrementally), decimal string. |
items[]. | integer | Current holder count (maintained incrementally). |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"issuanceId": "string",
"issuerAccount": "string",
"assetScale": 0,
"transferFee": 0,
"maxAmount": "string",
"requireAuth": false,
"canLock": false,
"canClawback": false,
"assetClass": "string",
"assetSubclass": "string",
"metadataUri": "string",
"metadataJson": "string",
"metadataCdnUrl": "string",
"name": "string",
"ticker": "string",
"description": "string",
"iconUrl": "string",
"issuerName": "string",
"urls": "string",
"additionalInfo": "string",
"metadataFetchedAt": "string",
"createdLedger": 0,
"createdAt": 1745798400,
"destroyedLedger": 0,
"currentSupply": "string",
"holderCount": 0,
"lastPriceXrp": "string",
"priceChange24hPct": "string",
"volume24hXrp": "string",
"volume7dXrp": "string",
"trades24h": 0,
"lastTradeAt": "string"
}
],
"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": []
}