The financial infrastructure layer for AI agents on Solana. Instant wallets, programmable spending limits, and debit card-ready — in one API call.
No private keys in your code. No custody risk. No complex setup. Just an API key and your agent is live on Solana.
// 1. Create your AI agent wallet const agent = await fetch('https://api.octoprot.xyz/agent/create', { method: 'POST', headers: { 'x-api-key': YOUR_API_KEY }, body: JSON.stringify({ name: 'my-trading-agent', daily_limit_usdc: 50, max_per_tx: 10 }) }); // → { agent_id, wallet_address } // → Fund wallet_address with USDC // 2. Agent spends autonomously await fetch('https://api.octoprot.xyz/agent/spend', { method: 'POST', headers: { 'x-api-key': YOUR_API_KEY }, body: JSON.stringify({ agent_id: agent.id, recipient: 'SERVICE_WALLET', amount_usdc: 5, memo: 'Compute job #1337' }) }); // ✓ Signed & broadcast on Solana // ✓ Spending rules enforced // ✓ $OCTO burn triggered
Not just a memecoin. The native fuel of Octo Protocol — with real utility baked into every transaction your agent makes.