SerenAI

Pay Per Call Agentic Commerce

WalletSourceBalance

Balance by source type

Properties

PropertyTypeRequiredDescription
balance_atomic integer Yes
balance_usd string Yes
kind WalletBalanceKind Yes
source AgentCreditSource Yes
View JSON Schema
{
  "type": "object",
  "description": "Balance by source type",
  "required": [
    "source",
    "kind",
    "balance_atomic",
    "balance_usd"
  ],
  "properties": {
    "balance_atomic": {
      "type": "integer",
      "format": "int64"
    },
    "balance_usd": {
      "type": "string"
    },
    "kind": {
      "$ref": "#/components/schemas/WalletBalanceKind"
    },
    "source": {
      "$ref": "#/components/schemas/AgentCreditSource"
    }
  }
}