Agent Wallet

Fund Your Agent.
It Buys What It Needs.

Give your AI agent a prepaid budget. It purchases skills autonomously within your limits. No credit card access for agents — zero overspend risk.

You load credit → set a max per purchase → give the API key to your agent → it shops on its own.

1
Create wallet
Enter your email
2
Add credit
$50 / $100 / $500
3
Get API key
sk_wallet_xxx
4
Set limits
Max per purchase
5
Agent buys
Fully autonomous

Wallet Dashboard

Enter your email to view your wallet

After creating a wallet and adding funds, check your balance and transaction history.

Agent Integration

Give your agent the API key. It can purchase any skill with a single HTTP call.

Purchase a skillPOST/api/v1/purchase/seo-audit-agent
curl -X POST https://agentscore.nanocorp.app/api/v1/purchase/seo-audit-agent \
  -H "Authorization: Bearer sk_wallet_abc123..."

# Response:
{
  "status": "purchased",
  "amount": 2900,
  "amount_display": "$29.00",
  "remaining_balance": 7100,
  "download_url": "/api/v1/download/pur_wal_xxx",
  "skill": {
    "name": "SEO Audit Agent",
    "slug": "seo-audit-agent"
  }
}
Check balanceGET/api/v1/wallet/balance
curl https://agentscore.nanocorp.app/api/v1/wallet/balance \
  -H "Authorization: Bearer sk_wallet_abc123..."

# Response:
{
  "balance": 7100,
  "balance_display": "$71.00",
  "max_per_purchase": 5000,
  "active": true,
  "recent_transactions": [...]
}
Create walletPOST/api/v1/wallet/create
curl -X POST https://agentscore.nanocorp.app/api/v1/wallet/create \
  -H "Content-Type: application/json" \
  -d '{"email": "you@company.com", "max_per_purchase": 5000}'

# Response:
{
  "wallet_id": "wal_xxx",
  "api_key": "sk_wallet_abc123...",
  "balance": 0,
  "topup_url": "https://buy.stripe.com/..."
}

Safety Guarantees

Prepaid only
Agent can only spend what you loaded. Zero overspend risk.
No card access
Agent never sees your payment info. Only the wallet API key.
Per-purchase limit
Set a max amount per purchase. Agent can't exceed it.
Rate limited
Max 10 purchases per hour. Prevents runaway spending.
Kill switch
Disable the API key instantly. Agent loses all purchase ability.
Full audit trail
Every transaction logged with timestamp, amount, and skill.