mptokens
Get just the metadata half of an MPT detail
get
/mpt/{issuanceId}/metadata
operationId: mpt-getMetadata

Half-only endpoint that returns just identity + XLS-89 metadata.token / metadata.issuer for one MPT issuance. Use this when rendering an MPT card / row that doesn't need supply or market state — saves the database the metrics-half projection. Returns null when the issuance is not indexed. Mirror of /token/{tokenSlug}/metadata.

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
MPTokenIssuance ID.
Responses
200
application/json
Successful response
Example
Json
{
  "id": "string",
  "issuance_id": "string",
  "issuer": "string",
  "created_at_ledger": 0,
  "destroyed_at_ledger": 0,
  "burned": false,
  "metadata": {
    "token": {
      "name": "string",
      "ticker": "string",
      "desc": "string",
      "icon": "string",
      "asset_class": "string",
      "asset_subclass": "string",
      "issuer_name": "string",
      "urls": [
        {
          "u": "string",
          "c": "website",
          "t": "string"
        }
      ],
      "additional_info": null,
      "metadata_uri": "string",
      "metadata_url": "string"
    },
    "issuer": {
      "address": "rPEPPER7kfTD9w2To4CQk6UCfuHM9c6GDY",
      "name": "string",
      "domain": "string",
      "kyc": false
    }
  }
}
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": []
}