# Get total supply

Returns the total RLUSD supply (all issued tokens, regardless of circulating status)
with a per-chain breakdown. No authentication required.

Endpoint: GET /v1/stablecoin/market-cap/{currencyCode}/total
Version: 1.0.0
Security: 

## Path parameters:

  - `currencyCode` (string, required)
    Currency code (e.g. RLUSD)
    Example: "RLUSD"

## Response 200 fields (application/json):

  - `balance` (object, required)
    Balance for a single currency or chain.

  - `balance.amount` (string, required)
    Balance as a decimal string (e.g. "1000000000.00")

  - `balance.ledgerIndex` (integer,null)
    Ledger index at which this balance was last observed. Absent when not applicable.

  - `chainBalances` (object, required)
    Per-chain balance breakdown. Keys are blockchain network names (e.g. XRPL, ETH).

## Response 404 fields (application/problem+json):

  - `type` (string)
    URI reference identifying the problem type

  - `title` (string)
    Short, human-readable summary of the problem

  - `status` (integer)
    HTTP status code

  - `code` (string)
    Machine-readable error code
    Enum: "TRANSACTION_NOT_FOUND", "INVALID_REQUEST_BODY", "UNKNOWN_EXCEPTION"


