> ## Documentation Index
> Fetch the complete documentation index at: https://docs.modo.link/llms.txt
> Use this file to discover all available pages before exploring further.

# GetDsoRates

> CC/USD rate, current mining round, and DSO party info

Returns DSO (Decentralised Synchronizer Operator) rate information — Canton Coin to USD rate, current mining round, amulet price, and lists of open and issuing mining rounds. Useful for pricing fees and scheduling payments.

## Request

```proto theme={null}
message GetDsoRatesRequest {}
```

## Response

<ParamField path="cc_usd_rate" type="string">Current CC/USD exchange rate (decimal string).</ParamField>
<ParamField path="amulet_price" type="string">Amulet price for the current round.</ParamField>
<ParamField path="current_round" type="uint64">Current mining round number.</ParamField>
<ParamField path="dso_party_id" type="string">DSO party identifier.</ParamField>
<ParamField path="featured_app_issuance" type="string">Featured-app rewards issuance rate.</ParamField>
<ParamField path="open_mining_rounds" type="OpenMiningRound[]">Active mining rounds accepting transfers.</ParamField>
<ParamField path="issuing_mining_rounds" type="IssuingMiningRound[]">Rounds currently issuing rewards.</ParamField>

## Example

```bash theme={null}
grpcurl rpc-devnet.modo-api.app:443 \
  silvana.ledger.v1.DAppProviderService/GetDsoRates
```

## See also

* [`GetAmulets`](/agentic-api/core/get-amulets) — pick amulets to consume in a Canton Coin operation.
* [`GetBalances`](/agentic-api/core/get-balances) — total token balances for the authenticated party.
* [`TransferCc`](/agentic-api/transfer/transfer-cc) — use the CC/USD rate to schedule payments.
