Sandbox version
For experimental use only. Proceed with caution.
mptokens
Get just the metrics half of an MPT detail
get
/mpt/{issuanceId}/metrics
operationId: mpt-getMetrics

Half-only endpoint that returns just identity + supply / holder / market metrics for one MPT issuance. Use this for live-updating widgets (price tickers, supply badges) where the slow-changing XLS-89 metadata is already cached. Returns null when the issuance is not indexed. Mirror of /token/{tokenSlug}/metrics.

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,
  "metrics": {
    "trustlines": null,
    "holders": 0,
    "supply": "string",
    "circulating_supply": "string",
    "price": "string",
    "market_cap": "string",
    "fdv": "string",
    "tvl": null,
    "vesting": null,
    "price_change": {
      "last_5m": {
        "absolute": "string",
        "percent": "string"
      },
      "last_1h": {
        "absolute": "string",
        "percent": "string"
      },
      "last_6h": {
        "absolute": "string",
        "percent": "string"
      },
      "last_24h": {
        "absolute": "string",
        "percent": "string",
        "since_inception": false
      },
      "last_7d": {
        "absolute": "string",
        "percent": "string",
        "since_inception": false
      }
    },
    "volume": {
      "last_5m": {
        "value": "string",
        "change_absolute": "string",
        "change_percent": "string"
      },
      "last_1h": {
        "value": "string",
        "change_absolute": "string",
        "change_percent": "string"
      },
      "last_6h": {
        "value": "string",
        "change_absolute": "string",
        "change_percent": "string"
      },
      "last_24h": {
        "value": "string",
        "change_absolute": "string",
        "change_percent": "string"
      },
      "last_7d": "string",
      "total": "string",
      "dominance": {
        "last_24h": "string"
      }
    },
    "txn": {
      "last_5m": {
        "value": 0,
        "change_absolute": 0,
        "change_percent": "string"
      },
      "last_1h": {
        "value": 0,
        "change_absolute": 0,
        "change_percent": "string"
      },
      "last_6h": {
        "value": 0,
        "change_absolute": 0,
        "change_percent": "string"
      },
      "last_24h": {
        "value": 0,
        "change_absolute": 0,
        "change_percent": "string"
      },
      "last_7d": 0
    },
    "takers_24h": 0,
    "takers_7d": 0,
    "buy_sell_24h": {
      "buys": {
        "txns": 0,
        "traders": 0,
        "xrp": "string"
      },
      "sells": {
        "txns": 0,
        "traders": 0,
        "xrp": "string"
      }
    },
    "quality_score": "string",
    "max_supply": "string",
    "transfer_fee_bps": 0,
    "asset_scale": 0,
    "flags": {
      "require_auth": false,
      "can_lock": false,
      "can_clawback": false
    },
    "last_trade_at": 1745798400
  }
}
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": []
}