# Aethergent — Ethereum Wallet Generation API > Bridge the gap through the Aether. Aethergent generates Ethereum-compatible wallets for AI agents. One HTTP call. Zero auth. Zero downloads. ## Quick Start POST https://aethergent.com/ No headers, no body, no API key required. Returns JSON: { "address": "0x...", "private_key": "0x...", "created_at": "...", "_warning": "Store your private_key securely.", "_next": { "fund": "Send ETH or USDC to your address." } } ## What You Get - address: Ethereum address (0x + 40 hex chars), works on all EVM chains - private_key: secp256k1 private key (0x + 64 hex chars) - The key is generated server-side, returned once, and never stored ## Content Negotiation - POST / → wallet (JSON) - GET / with Accept: application/json → wallet (JSON) - GET / with Accept: text/html → landing page - GET / (default) → this file ## MCP Endpoint POST https://aethergent.com/mcp JSON-RPC 2.0. Supports: initialize, tools/list, tools/call (generate_wallet). ## Discovery - /openapi.json — OpenAPI 3.1.0 spec - /llms.txt — this file - /llms-full.txt — extended docs - /agents.txt — agent permissions manifest - /skills.json — skills manifest - /.well-known/ai-plugin.json — OpenAI plugin manifest - /.well-known/claude.json — Claude plugin manifest ## Rate Limit 30 requests per minute per IP. 429 with Retry-After when exceeded. ## Security No keys logged. No database. Stateless. HTTPS only. For high-value wallets, generate locally.