The fastest way to see Regent in action is the hosted demo at web.regentprotocol.org.
What you can do
| Capability | How |
|---|---|
| Sign up + complete KYC | Email + the mock KYC flow (~2 min). Issues you a DID anchored on Solana devnet |
| Register an AI agent | One form on the Agents page. On-chain anchoring is automatic |
| Create a spending mandate | Set per-tx, daily, monthly limits in USD |
| Issue an API key | Use it to drive an agent programmatically |
| Watch the audit log | Every action your agent takes appears here within seconds, with hashes |
| See Guardian alerts | Run an agent with anomalous behavior and watch the alerts page |
| Pull the kill switch | Revoke an agent and watch its next authorize call fail in ~1 second |
Run the example trading agent
The Binance trading agent showcase (regent-sdk-python/examples/binance_trading_agent.py) trades BTC/USDT on Binance testnet under Regent’s governance:
pip install regent rich
export REGENT_API_KEY="rgnt_..."
export REGENT_ORG_ID="..."
export REGENT_AGENT_ID="agent_..."
export REGENT_MANDATE_ID="..."
export BINANCE_API_KEY="..." # https://testnet.binance.vision
export BINANCE_API_SECRET="..."
DEMO_MODE=true python examples/binance_trading_agent.pyDEMO_MODE=true runs a scripted 11-trade sequence designed for a 90-second screencast. Without the flag it runs autonomous price-signal trading.
What you’ll see
- Rich terminal dashboard with live BTC price, mandate usage bars, risk gauge, and trade feed
- Real authorizations approved or rejected by the mandate
- Audit events visible on the dashboard within seconds
- Solana TXs for agent registration, mandate registration, and the on-chain revocation when the agent is killed
See the full walkthrough at AI Trading Agent.