Server-side wallet infrastructure. Your AI agent creates wallets, swaps tokens, and sends transactions via API — no browser extensions, no human approval, no leaked keys.
// Create a wallet for your AI agent const res = await fetch("https://api.aiwallet.tech/wallet/create", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ userId: "agent-001" }) }); // Swap tokens with natural language await fetch("https://api.aiwallet.tech/agent/chat", { method: "POST", body: JSON.stringify({ userId: "agent-001", message: "swap 0.01 ETH to USDC on base" }) }); // ✓ Agent signed & broadcasted in <100ms
Three layers between your agent and the blockchain. Each one handles complexity so your agent doesn't have to.
Natural language or structured REST. Your agent says what it wants — “swap 0.01 ETH to USDC” — and the API handles the rest.
POST /agent/chat0x Protocol scans 150+ liquidity sources on Base. Jupiter aggregates Raydium, Orca, and more on Solana. Optimal route, best price.
0x v2 + Jupiter v6Private key decrypted from AES-256-GCM vault, transaction signed, broadcast to chain, key wiped from memory. Sub-100ms.
AES-256-GCMPick the method that fits your agent framework.
Full specification with schemas, examples, and descriptions. Drop it into any agent framework that supports OpenAPI tool discovery.
Model Context Protocol manifest with 5 pre-defined tools. Works with Claude Desktop, Claude Code, and any MCP-compatible agent.
Send plain English to one endpoint. The agent parses intent, routes the action, and returns structured results. Zero schema mapping.
Every endpoint your agent needs.
How we protect your agent's keys.
Private keys stored with AES-256-GCM encryption. Never stored in plaintext, never logged, never cached.
Keys decrypted only at the moment of signing. After the transaction is broadcast, the decrypted key is immediately wiped from memory.
No API endpoint ever returns private keys. Your agent gets signing capability without key exposure.
For production, upgrade the key vault to Turnkey, Fireblocks, or AWS KMS. Same API, hardened storage.
One API call to create a wallet. One more to start transacting. Read the docs and ship.