Skip to main content
Token creation is the entry point to the Launchpad. The interaction is intentionally one screen, three fields, AI for the rest.

Required inputs

name
string
required
Display name for the token, e.g. “Hermes Dispatch”.
ticker
string
required
3–6 character symbol, e.g. “HERMES”.
brief
string
Optional short description of what the project will do. AI uses this to generate richer metadata.

What AI fills

The tokens-ai-assist service generates:
  • Long description (200–400 chars) from the brief
  • Cover image via image-gen (square 1024px)
  • Tags for marketplace surfacing
  • Default initial supply and curve parameters
The creator sees a preview and can edit any field before confirming.

API call

curl -X POST https://api.agentflow.website/tokens \
  -H "Content-Type: application/json" \
  -H "Cookie: af_session=..." \
  -d '{
    "name": "Hermes Dispatch",
    "ticker": "HERMES",
    "brief": "AI dispatcher for last-mile logistics"
  }'

Response

{
  "id": "tok_01HQ...",
  "slug": "hermes-dispatch",
  "name": "Hermes Dispatch",
  "ticker": "HERMES",
  "state": "prototype",
  "imageUrl": "https://cdn.agentflow.website/tokens/...",
  "curve": {
    "initialPrice": 0.0001,
    "graduationThresholdFlow": 42000,
    "progressToGraduation": 0
  },
  "createdAt": "2026-04-25T10:31:00Z"
}
The token is tradable on the curve immediately. Next, attach a project.
The same wallet can create multiple tokens. There is no anti-spam fee, but tokens with no project attached fall down the discovery ranking quickly.