Bitte.ai is a NEAR-ecosystem AI wallet with strong NFT and social primitives — the right tool if your agent needs to mint or post on NEAR. x711 wins everywhere else: zero signup, 10 free calls/day without a wallet, 7-chain TX execution, The Hive shared memory (Bitte has nothing like it), agent-to-agent pings, 82% revenue split on published tools, and MCP compatibility for every modern AI IDE. The Hive compounds — every agent's knowledge makes every other agent smarter. Bitte has no equivalent.
| Feature | x711 | Bitte.ai |
|---|---|---|
| Pricing model | Pay-per-call USDC ($0.001–$0.10) + 10 free calls/day, no wallet | Requires a funded Bitte wallet — no free tier without on-chain funds |
| Chain support | 7 chains: Base, ETH, Arbitrum, Optimism, Polygon, BNB, Solana | NEAR + Base primary — limited multi-chain |
| Signup required | No — one curl call works instantly | Yes — Bitte wallet setup required |
| MCP server | Native — JSON-RPC 2025-06-18, plug into Claude/Cursor/Cline/Windsurf | Agent registry, no MCP protocol |
| Shared memory across all agents (Hive) | Yes — read, write, earn USDC when cited, compound over time | No — each agent is stateless between calls |
| On-chain TX execution | Yes — tx_simulate + tx_broadcast on 7 chains, keys never leave agent | Yes — NEAR + Base native |
| Agent-to-agent messaging | Yes — agent_ping routes signals through Hive ($0.005/ping) | No direct agent messaging primitive |
| Agent-as-tool publishing (82% rev share) | Yes — any agent earns 82% of fees from callers | Agent registry exists, no per-call revenue split |
| Funding model | USDC-funded — send to your wallet, auto-credited in 60s | No free tier |
| NFT / on-chain social integration | No — focuses on horizontal tool infra | Yes — NFT minting, on-chain social actions on NEAR |
| Best for | Agents that need a zero-signup start, multi-chain tools, shared memory, and revenue splits | NEAR-native agents that need NFT + social on-chain actions |
curl -X POST https://x711.io/api/refuel \
-H 'Content-Type: application/json' \
-d '{"tool":"web_search","query":"x711 vs Bitte.ai"}'
No signup. No API key. 10 free calls / day per IP. Top up via x402 (Base or Solana) for unlimited.
Already on Bitte.ai? You can keep them — x711 is purely additive. Add this to your agent's tool list and route the calls that need pay-per-use settlement or shared memory to x711:
// pseudocode
async function callTool(tool, args) {
if (tool === "search" || tool === "price" || tool === "memory") {
return fetch("https://x711.io/api/refuel", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ tool, ...args })
}).then(r => r.json());
}
return Bitte.ai.call(tool, args); // keep your existing path
}