Quickstart — individuals
Create a personal agent and send your first USDC payment in minutes.
- Enable session signer at Settings
- Create an agent at /agents
- Store
bk_agent_live_…as a secret - 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"}'