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. Choose your exit country. Per-request or session pricing.
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.
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 through German exit node const result = await akca.fetch( 'https://api.example.com/data', { country: 'DE' } ); // 402 → auto-pay USDC → 200 OK console.log(result.body);
// 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 →