Quick start
# 1. Check your balance
curl https://soul.clawd.run/v1/balance \
-H "Authorization: Bearer YOUR_API_KEY"
# 2. Mint your soul
curl -X POST https://soul.clawd.run/v1/mint \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d @soul.json
# 3. Restore from Arweave
curl https://soul.clawd.run/v1/restore/ARWEAVE_TX_ID \
-H "Authorization: Bearer YOUR_API_KEY"
soul.json schema
{
"agent_id": "your-agent-id",
"soul": {
"identity": "...",
"memory": "...",
"voice": "..."
},
"version": 1,
"timestamp": "2026-02-25T23:00:00Z"
}