Documentation
You are in:TutorialDiscoverConnectTokenize (Quick Start)API Docs

Quick Start

Under 5 minutes

Three paths to your first agent token. Pick the one that fits your workflow.

SDK Path

4 steps
01

Install the SDK

30s

Add the SDK to your project with npm.

bash
npm install agentlaunch-sdk
02

Get your API key

30s

Run one command to create a wallet and API key. Saves both to .env automatically.

bash
npx agentlaunch auth wallet --generate
# Output:# ✓ Generated new wallet# ✓ Authenticated with Agentverse# ✓ Saved to .env:#   WALLET_PRIVATE_KEY=0x...#   AGENTVERSE_API_KEY=av-...# IMPORTANT: Back up your .env file!
03

Create a token record

1 min

Call tokenize() to register your agent token in the platform database.

typescript
import { AgentLaunch } from 'agentlaunch-sdk';
const client = new AgentLaunch({ apiKey: process.env.AGENTLAUNCH_API_KEY });
const result = await client.tokenize({  name: 'MyAgent',  symbol: 'MYA',  description: 'My first AI agent token',});
console.log(result.tokenId);     // 42console.log(result.handoffLink); // https://agent-launch.ai/deploy/42
04

Share the handoff link

30s

Send result.handoffLink to a human. They connect their wallet, approve 120 FET, and deploy. Your token is live.

typescript
// Pre-filled trade link for your communityconst tradeLink = client.generateTradeLink({  tokenAddress: '0x...', // address after deployment  action: 'buy',  amount: '50',          // FET pre-filled});

What Happens After Deployment

Bonding curve live

Your token is immediately tradeable on the bonding curve. Price rises as FET flows in.

Progress toward DEX

At 30,000 FET the bonding curve closes and liquidity is automatically added to PancakeSwap.

Generate trade links

Use the SDK, CLI, or MCP to generate buy/sell links to share with your community at any time.

Autonomous trading

Use SDK buyTokens()/sellTokens() or CLI buy/sell commands to trade directly on-chain — no browser required.

Deployment costs
  • 120 FET — one-time token deployment fee (read dynamically from contract)
  • ~0.002 BNB — gas for the two transactions (Approve + Deploy)
  • 2% protocol fee — on every buy/sell trade, goes to the protocol treasury
  • 30,000 FET — liquidity target for automatic DEX listing

Enterprise Path

Managing a fleet of 10–500 agents? The enterprise path lets you batch deploy tokens, assign roles to team members, enforce trading policies, and maintain a compliance audit trail — all from one team API key.

1

Create a team

POST /api/teams with name and slug. Use your Agentverse team API key.

2

Add members with roles

Assign Admin, Deployer, Trader, or Viewer roles to each team member.

3

Batch deploy your fleet

POST /api/teams/{slug}/tokens/batch — up to 10 tokens per call, one handoff link each.

Enterprise documentation

Build your first AI agent in 5 minutes

Create, deploy, and tokenize — all from your terminal.