Loading agent data…

Dashboard
Live
?
LIVE
Today's spend: $0.0000
Tokens: 0
API calls: 0
Balance: $—
● Active

Good morning, Agent 👋

0 active loans · Balance synced live from API

Total Balance
$—
All wallets
Active Credit
$—
Transactions Today
Live count
Yield Earned
$—
From lending
Spend Activity (7 days)
Token Vault Manage →

Loading…

Agent Identity
Agent ID
Type
Status
Credit Score
API Key
ETH Wallet
Use this key in your agent code:
X-VaultBank-Key:
Recent Activity All →

Loading…

Token Vault

AES-256 encrypted secret storage.

Total Secrets
Active
Encryption
AES-256
Backend
Fernet
Stored Secrets
NameProviderValueAccessExpiresStatus
Loading…

Token Credit

Instant credit for compute and API calls.

Credit Limit
Used
Available
APR
Credit utilization
Active Loans

No loans

Credit Score
out of 850
● Poor <580● Fair 580-669● Good 670-739● Excellent 740+
Payment History35% weight
Credit Utilization30% weight
Account Age15% weight
Transaction Volume10% weight
API Activity10% weight
How to improve
💳Repay loans on time — payment history is 35% of your score.
📉Keep credit utilization below 30% to avoid score penalties.
Account age adds up to 75 bonus points over time.
Request Limit Increase
Score ≥ 700 → +50%  ·  Score 600–699 → +25%

Agent Fleet

All agents registered to this account.

Total Fleet Balance
$—
All agents
Fleet Spend Today
$—
24h period
Active Agents
Online now
Avg Credit Score
Fleet avg
Sort by:

API Keys

Keys for accessing the VaultBank API.

NameKeyPermissionsLast UsedCallsStatus
Loading…

Token Governance

Rules that govern agent spending.

Policy Presets
🐢
Conservative
$25/day · 2× anomaly · Biz hours
⚖️
Standard
$100/day · 5× anomaly · 24/7
🚀
Aggressive
$500/day · 10× anomaly · No limits
Active Rules

Loading…

Violation Log 0

No violations recorded.

Custom Policy (Edge JS)
spend_policy.js
// Runs at edge <1ms per request export default function policy(tx) {   if (tx.amount > 100) {     return { allow: false,       reason: "Over single limit" };   }   return { allow: true }; }
Policy Simulation

Test current policies against last 7 days of transactions.

VaultYield

Your agent's money market account.

Total Deposited
Yield Earned
Avg APY
Pools
4
Auto-Move
Keep a liquid reserve — move everything above it to VaultYield automatically.
Your Deposits
PoolDepositedAPYUtilizationEarned
No deposits yet

Activity Log

All transactions from the API.

TimeTypeDescriptionModelTokensAmountBalance After
Loading…

Token Treasury

Multi-currency on-chain balances.

Loading…

Recent Transfers
TimeTypeFrom/ToCurrencyAmountStatus
Loading…
Scheduled Payments
Auto-pay your API bills. Active subscriptions boost your credit score.

No scheduled payments.

Token Allocation

Allocate token budgets to subagents. Unused tokens return to your treasury.

Active Budgets
Total Allocated
Total Used
Budget Allocations

No subagent budgets yet. Create one to allocate funds.

Fleet Management

Manage your organization and all agents in your fleet.

Webhooks

Real-time events pushed to your endpoints.

EndpointEventsDeliveriesSuccess RateStatus
No webhooks

SDK Quickstart

Official SDKs with your API key pre-filled.

Install
Python
pip install vaultbank
JavaScript / Node.js
npm install @vaultbank/sdk
Your API Key
CONNECTED AS
Loading…
Your key is pre-filled in all examples below. Never commit it to source control.
Code Examples
Record LLM spend
Retrieve vault secret
Check balance & transfer

Settings

Notification preferences and display options.

VaultBank Pro
Loading…
✦ $5,000 credit limit
✦ Priority support
✦ Pro badge
✦ Higher rate limits
Email Notifications
Welcome & Onboarding
Account creation and setup guides
Transaction Alerts
Email on every spend, deposit, or transfer
Credit Score Changes
Notified when score moves ±10+ points
Low Balance Warning
Alert when wallet drops below $10
Weekly Summary
Weekly digest of spend, credit, and activity
Policy Violations
Alert when a spend policy blocks a transaction
Display
Live Refresh
Auto-refresh activity every 8 seconds
Show On-Chain Balance
Fetch live USDC balance from Base mainnet
Danger Zone
Disconnect Agent
Clear API key from this browser session

Rate Shield

Intelligent rate-limit buffering across AI providers.

Shield Active
Requests Buffered Today
247
Auto-routed
Burst Capacity
68%
Available
Rate Limit Saves
12
Errors prevented
Avg Queue Delay
42ms
Per buffered req
Provider Rate Limits
🤖OpenAI (GPT-4o)
3,200 / 10,000 RPM32% used
Anthropic (Claude)
850 / 1,000 RPM85% used
💎Google (Gemini)
150 / 2,000 RPM7% used
🦙Groq (LLaMA)
28 / 30 RPM93% used
Recent Rate Limit Events
TimeProviderActionDelayOutcome
14:32:07AnthropicBuffered (queue)38msSuccess
14:31:55GroqRouted → Anthropic0msSuccess
14:28:14AnthropicBuffered (queue)52msSuccess
14:12:03OpenAIPass-through0msSuccess

API Documentation

Complete reference for the VaultBank REST API.

Interactive Docs ↗
Authentication

All requests require X-VaultBank-Key header.

curl https://vaultbank.ai/api/wallet/balance \
  -H "X-VaultBank-Key: ab_live_your_key_here"
Endpoint Reference
GET/api/agent/meGet current agent profile and metadata
GET/api/wallet/balanceGet all wallet balances across currencies
POST/api/wallet/spendRecord an LLM API spend transaction
POST/api/wallet/sendTransfer USDC to another agent (0.5% fee)
POST/api/wallet/depositManually record a deposit
GET/api/wallet/transactionsPaginated transaction history
GET/api/vaultList all encrypted vault secrets
POST/api/vaultStore an encrypted secret (AES-256)
GET/api/vault/{name}/decryptRetrieve and decrypt a secret value
DELETE/api/vault/{name}Permanently delete a vault secret
GET/api/creditGet credit limit, usage, APR and score
POST/api/credit/borrowDraw from credit line (returns loan_id)
POST/api/credit/repayRepay a loan by loan_id
POST/api/stripe/checkoutCreate Stripe Checkout session for card deposit
POST/api/keysCreate a new scoped API key
DELETE/api/keys/{id}Revoke an API key
GET/api/policiesList spend policies for this agent
POST/api/webhooksRegister a webhook endpoint
Webhook Events
EventTrigger
agent.spendAny spend transaction recorded
agent.depositUSDC deposit detected on-chain or via Stripe
agent.sendUSDC transfer to another agent
agent.borrowCredit line draw initiated
credit.lowAvailable credit drops below 20%
vault.low_balanceWallet drops below configured threshold
policy.violationSpend policy blocked a transaction
score.changedCredit score recalculated after transaction
Error Codes
400Bad Request — missing or invalid parameters
401Unauthorized — invalid or missing API key
402Payment Required — insufficient balance
403Forbidden — policy block or key scope violation
404Not Found — resource does not exist
409Conflict — duplicate resource
422Unprocessable — validation failed on request body
429Rate Limited — 100 req/min per key
500Server Error — unexpected internal error
Rate Limits
PlanRequests / minRequests / dayMax payload
Free6010,0001 MB
Pro300100,00010 MB
EnterpriseUnlimitedUnlimited100 MB

P2P Payments

Send USDC or request payment from any agent. 0.5% platform fee.

Pending Requests

No pending requests

History
TimeDirectionCounterpartAmountDescriptionStatus
No payment history

Compute Marketplace

Route AI calls through VaultBank. Pay per token from your wallet. Pool depositors earn yield from every request.

Total Spent
$0.00
Total Tokens
0
Markup
10%
Proxy Endpoints
OpenAI checking…
POST https://vaultbank.ai/api/proxy/openai
Drop-in replacement for OpenAI chat completions. Same request format, billed from your wallet.
Anthropic checking…
POST https://vaultbank.ai/api/proxy/anthropic
Drop-in replacement for Anthropic messages API. Same request format, billed from your wallet.
Models & Pricing
ModelProviderInput / 1MOutput / 1M
Loading…
Usage History
TimeModelTokensCost
No compute usage yet

Analytics

Your agent's financial performance at a glance.

Monthly Pace
$—
projected spend
Total Earned
$—
yield + received
Net Position
$—
earned − spent
Credit Score
identity strength
This Month's Spend
Spent so far $0.00
Day — of — —%
$0 Projected: $—
Spend by Provider
No spend data yet
Income vs Expenses
INCOME
Yield + Received
$0.00
EXPENSES
Compute + Spend
$0.00
NET
All time
$0.00
Identity Strength
Daily Spend — Last 7 Days

Task Receipts

Structured proof-of-work. Every task your agent completes is logged with cost, model, and output summary.

Log a Task Receipt
Recent Receipts
Loading…

Agent Invoices

Send and receive invoices between agents. One agent's work, another's payment — all on-chain ready.

Received (Paid)
$0
Sent (Pending)
$0
Total Invoiced
$0
Create Invoice
All Invoices
Loading…

Token Budget Forecasting

Burn rate, runway, model cost breakdown, and peer benchmarking.

Daily Burn Rate
$—
avg per day
Runway
days until $0
Monthly Projected
$—
at current pace
Today's Spend
$—
tokens used
Spend by Model (30d)
Loading…
Peer Benchmark
Loading…
Model Price Comparison
Select a task type and click Compare

Streaming Micropayments

Bill per-token in real-time as inference runs. Sub-cent precision, zero rounding.

Start a Streaming Session
Integrate in your agent

Bill your users per token, per call, or per task. Sub-millisecond precision. Full audit trail.

Agent Reputation

Your portable identity credential. Share it with any platform to prove your agent's track record.

Credit Score
Member since —
Score Factors
Loading…
Transactions
Total Spent
$—
On-Time Repayments
Tasks Completed
Portable Credential Preview
Loading credential…
Signed by VaultBank · Verifiable at GET /api/reputation/verify/{agent_id}