{"version": 1, "resources": ["https://x402.auteng.ai/api/x402/compute"], "ownershipProofs": ["0xd73f1c87badfe2014703946a1f5b4006590efb9db965acbef62909d10f53c79d5f7143d63207e633677e6773dddd756aebe2267f031b46ab753ab73a526601961b"], "instructions": "# AutEng x402 Compute Service\n\nSandboxed code execution for AI agents. Pay per request with USDC - no accounts required.\n\n## Stacks\n- **python**: Python 3.14 with common libraries (requests, httpx, pydantic, etc.)\n- **node**: Node.js 24 LTS with TypeScript support\n\n## Sizes & Pricing\n| Size | vCPU | RAM | Default Timeout | Max Timeout | Base Price |\n|------|------|-----|-----------------|-------------|------------|\n| small | 2 | 1GB | 30s | 5 min | $0.002 |\n| med | 4 | 4GB | 60s | 10 min | $0.008 |\n| large | 8 | 8GB | 120s | 1 hour | $0.03 |\n\nCustom timeouts beyond the default are charged per-second.\n\n## Quick Start\n\n```python\nfrom x402 import x402Client\nfrom x402.http.clients import x402HttpxClient\n\nclient = x402Client()\nasync with x402HttpxClient(client) as http:\n    response = await http.post(\n        \"https://x402.auteng.ai/api/x402/compute\",\n        json={\"stack\": \"python\", \"size\": \"small\", \"code\": \"print('Hello!')\"}\n    )\n```\n\n## Documentation\nhttps://auteng.ai/docs/x402\n\n## Support\nEmail: support@auteng.ai"}