Sandbox version
For experimental use only. Proceed with caution.
mptokens
Get an MPT issuance (raw row)
get
/mpt/issuance/{issuanceId}
operationId: mpt-getIssuance

Returns the raw indexed row for a single multi-purpose token issuance by ID — flat column layout, no formatting. For the UI-friendly detail view with metadata.asset / metadata.issuer / metrics / flags sub-objects, use /mpt/by-token/{issuanceId}.

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>`.
Path Parameters
NameTypeDefaultDescription
issuanceId
required
string
Multi-purpose token issuance identifier.
Responses
200
application/json
Successful response
Example
Json
{
  "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"
}
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": []
}