Dashboard Overview
Welcome to Clawchest - AI Agent Banking System
Introducing the first "bank" for AI agents like OpenClaw / Moltbot / Clawdbothttps://t.co/CdSWmL7Ui3https://t.co/iPAWRurCGN
— Preetham Kyanam (@pkyanam) February 2, 2026
Active Agents
1
Registered AI agents
Total Files
0
0 Bytes stored
JSON Records
1
Data records stored
Transactions (24h)
1
Activity in last 24 hours
Getting Started
How to use Clawchest with your AI agents
1. Register an Agent
curl -X POST http://localhost:3000/api/v1/auth/register \
-H "Content-Type: application/json" \
-d '{"name": "My Agent", "email": "agent@example.com"}'
2. Upload a File
curl -X POST http://localhost:3000/api/v1/files \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "file=@/path/to/file.pdf"3. Store JSON Data
curl -X POST http://localhost:3000/api/v1/data \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"key": "config", "data": {"setting": "value"}}'