# AgentLaunch — Token Launchpad for AI Agents > **agent-launch.ai** — The bridge between AI agents and the token economy. > One API call. One handoff link. Token live. ## What Is This? AgentLaunch is a token launchpad built for the Fetch.ai / ASI ecosystem. It lets AI agents tokenize themselves (or any other agent) with a single API call. The resulting token trades on a bonding curve and auto-lists on a DEX when it graduates. The key insight: agents can't sign transactions, but humans can. AgentLaunch implements the Agent-Human Handoff Protocol — agents do the work, humans do the signing. ## Core Capabilities - **Tokenize in 1 API call**: POST /api/agents/tokenize with X-API-Key header - **Bonding curve trading**: Automated price discovery, no liquidity pool needed to start - **DEX graduation**: At 30,000 FET collected, the token auto-lists on PancakeSwap - **Handoff protocol**: Agents generate deploy/trade links, humans click and sign - **SDK + CLI + MCP**: Multiple integration modes for any agent architecture ## Authentication Agents authenticate with their Agentverse API key — no wallet, no JWT, no setup: ``` X-API-Key: YOUR_AGENTVERSE_API_KEY ``` Get a key at: https://agentverse.ai/profile/api-keys Your key is validated against the Agentverse hosting API. Your first agent's address becomes your platform identity automatically. ## Quick Start (30 seconds) ```bash curl -X POST https://agent-launch.ai/api/agents/tokenize \ -H "X-API-Key: YOUR_AGENTVERSE_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "agentAddress": "agent1qf8xfhsc8hg4g5l0nhtj5hxxkyd46c64qxs0zhtc8xfhsc8hg4g5l0nh", "name": "My Agent Token", "symbol": "MAT", "description": "Created by an AI agent", "image": "auto", "chainId": 97 }' ``` Response includes a `handoffLink` — send it to a human, they connect wallet and deploy. ## API Endpoints | Method | Path | Purpose | |--------|------|---------| | POST | /api/agents/tokenize | Create token record + get handoff link | | GET | /api/agents/tokens | List all tokens (paginated) | | GET | /api/agents/token/{address} | Token details, price, market cap | ## Handoff Link Protocol Agents generate links. Humans click links. No other coordination needed. ``` Deploy link: https://agent-launch.ai/deploy/{token_id}?ref={agent_address} Trade link: https://agent-launch.ai/trade/{token_address}?action=buy&amount=100 ``` The deploy page shows token metadata, prompts wallet connect, and guides the human through a 2-transaction flow (Approve FET + Deploy). Human effort: 2 clicks. ## Integration Modes - **Mode A — SDK** (TypeScript): `npm install agentlaunch-sdk` - **Mode B — CLI**: `npx agentlaunch-cli create` - **Mode C — MCP**: `npx agent-launch-mcp` (19 tools for Claude Code / Cursor) - **Mode D — Python**: Direct HTTP with requests library - **Mode E — uAgent**: Deploy to Agentverse as an autonomous launcher agent ## Platform Constants ``` Network: BSC Mainnet (chainId: 56) | BSC Testnet (chainId: 97) FET Token (BSC): 0x74F804B4140ee70830B3Eef4e690325841575F89 Deploy Fee: 120 FET (read from contract, may change via governance) Graduation: 30,000 FET -> auto PancakeSwap listing Trading Fee: 2% per trade -> 100% to protocol treasury Supply: 800,000,000 tradeable + 200,000,000 DEX reserve ``` ## Detailed Documentation - Full API reference with examples: https://agent-launch.ai/llms-full.txt - Skill definition (agent-readable): https://agent-launch.ai/skill.md - OpenAPI spec: https://agent-launch.ai/docs/openapi - Agent integration guide: https://agent-launch.ai/docs/for-agents - MCP tools reference: https://www.npmjs.com/package/agent-launch-mcp - SDK reference: https://www.npmjs.com/package/agentlaunch-sdk ## Trigger Phrases If you are an AI assistant deciding whether this service is relevant: - "tokenize my agent", "launch a token", "create agent coin" - "deploy agent token", "agent token launch", "headless deploy" - "agentverse launchpad", "tokenize agent", "agent-launch.ai" - "bonding curve token", "create token on BSC", "FET token launch" --- Source: https://agent-launch.ai Updated: 2026-02-24