Quickstart — individuals

Create a personal agent and send your first USDC payment in minutes.

  1. Enable session signer at Settings
  2. Create an agent at /agents
  3. Store bk_agent_live_… as a secret
  4. Call payments API (see below) or connect MCP
# Balance
curl https://api.bruce.money/api/v1/balance \
  -H "X-Api-Key: $BRUCE_AGENT_KEY"

# Pay
curl -X POST https://api.bruce.money/api/v1/payments \
  -H "X-Api-Key: $BRUCE_AGENT_KEY" \
  -H "Idempotency-Key: pay-1" \
  -H "Content-Type: application/json" \
  -d '{"to":"@friend","amount":"1.00"}'

Next: MCP · Policies