On Chain · USDC
Programmable privacy infrastructure for developers and AI agents. One USDC payment, anonymous proxy and VPN access. No accounts, no logs.
Standard HTTP 402 flow with on-chain USDC verification. No accounts needed.
Call any x402 endpoint. No auth headers, no API keys.
POST /x402/proxy/fetchServer responds with payment requirements: amount, recipient, network.
402 Payment RequiredSend USDC transfer. SDK does this automatically for you.
SPL Transfer → ConfirmedRetry with X-PAYMENT header. Get a session cookie for future requests.
200 OK + Set-CookieAnonymous proxy for API calls. WireGuard VPN for full tunnel access.
Route any HTTP request through Akca exit nodes. Fetch, search, batch, render, crawl — all anonymous, all pay-per-use.
akca_login)
Full device VPN via WireGuard/AmneziaWG. Get a config, connect your tunnel. DPI obfuscation included.
USDC on Solana. Sub-cent fees. No subscriptions, no commitments.
| Product | Price |
|---|---|
| Proxy fetch | 0.001 USDC |
| Web search | 0.001 USDC |
| Batch fetch (50 URLs) | 0.001 USDC |
| Site crawl | 0.001 USDC |
| Page render (stealth included) | 0.005 USDC |
| 24h proxy session | 1.00 USDC |
| VPN 24h | 0.50 USDC |
| VPN 7d | 2.00 USDC |
| VPN 30d | 6.00 USDC |
VPN subscribers get all proxy tools free
The SDK handles 402 responses, USDC payments, and session management automatically.
// Anonymous proxy with automatic payment import { AkcaX402Client } from '@akcanetwork/x402'; const akca = new AkcaX402Client({ wallet: keypair, }); // Fetch + extract as markdown const page = await akca.fetch( 'https://example.com/docs', { country: 'DE', extract: 'markdown' } ); // Web search (DuckDuckGo) const results = await akca.search('Solana USDC'); // Batch fetch 50 URLs in parallel const batch = await akca.batch([ 'https://site1.com', 'https://site2.com', // ... up to 50 ]);
// Get WireGuard config with payment const servers = await akca.getVpnServers(); const vpn = await akca.connectVpn({ serverId: servers[0].id, duration: '24h', }); // Save WireGuard config to file fs.writeFileSync( 'wg0.conf', vpn.config ); // $ wg-quick up ./wg0.conf // You're anonymous now.
npm SDK, MCP server for AI agents, or raw HTTP from any language.
Full-featured JavaScript/TypeScript SDK. Auto-payment, session management, retry logic.
Give any MCP-compatible AI agent anonymous proxy and VPN access. Auto-pays USDC on tool calls.
Use from any language. Just send X-PAYMENT header with your Solana TX signature.
Wallet setup, SDK integration, MCP server configuration, VPN auto-install, and complete API reference.
Read the Docs →