Skip to content

Tokenizer APIDeploy & manage tokens

Control-plane API for ERC-20 and ERC-721 tokens via the Moonwell Factory.

Quick start

Create an account against the hosted API and authenticate:

bash
# Sign up
curl -X POST https://api-rho-gold-msx2gnbkee.vercel.app/auth/signup \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com","password":"password123"}'

Use the returned token as a Bearer header on protected routes:

bash
curl https://api-rho-gold-msx2gnbkee.vercel.app/me \
  -H "Authorization: Bearer <token>"

See Getting Started for full setup instructions.