Skip to content

Compute Credits

Compute credits are the internal unit of account on System R. They are pegged 1:1 to USD. When you call a tool, the cost is deducted from your compute credit balance.

  • 1 compute credit = $1.00 USD
  • Deposits are converted to compute credits at the time of deposit
  • Each tool call deducts a fixed amount (see pricing)
  • Balance below $0.01 triggers a low balance warning

Send tokens to the System R treasury wallet on Solana, then submit the transaction signature.

Treasury wallet: 9Nc6u9ft3uAr6DSaqHijFjQS53hZPDRL2LoVYvH4vK5H

CurrencyEndpointConversion
OSRPOST /v1/billing/deposit-osr$0.005 per token (presale: $0.004)
SOLPOST /v1/billing/deposit-solLive CoinGecko price
USDCPOST /v1/billing/deposit-usdc1:1
USDTPOST /v1/billing/deposit-usdt1:1
PYUSDPOST /v1/billing/deposit-pyusd1:1
  1. Send tokens to the treasury wallet on Solana mainnet.
  2. Wait for the transaction to confirm (finalized).
  3. Submit the transaction signature to the appropriate deposit endpoint.
  4. System R verifies the on-chain transfer and credits your balance.

Every deposit transaction is verified on-chain before credits are issued. Replay protection prevents the same transaction from being credited twice.

balance = client.get_balance()
print(f"Balance: ${balance['balance']}")
print(f"Low balance: {balance['is_low']}")
Terminal window
curl https://agents.systemr.ai/v1/billing/balance \
-H "X-API-Key: sr_agent_..."

Response:

{
"agent_id": "agt_a1b2c3d4",
"balance": "42.50",
"is_low": false,
"updated_at": "2026-03-25T12:00:00Z"
}
  1. Agent calls a tool (e.g. pre_trade_gate, cost $0.01).
  2. System R checks the agent’s balance.
  3. If balance >= cost, the tool executes and the cost is deducted.
  4. If balance < cost, HTTP 402 is returned. No deduction, no execution.
  5. The transaction is logged in the billing audit trail.

Presale buyers receive a 20% discount on all operations automatically.

Terminal window
curl https://agents.systemr.ai/v1/billing/transactions?limit=20 \
-H "X-API-Key: sr_agent_..."
Terminal window
curl https://agents.systemr.ai/v1/billing/usage \
-H "X-API-Key: sr_agent_..."

Returns usage grouped by operation type with count and total cost.

New agents start with a $0.00 balance. Deposit compute credits before calling paid tools. The get_pricing and list_tools endpoints are free and require no balance.