Skip to content

Getting Started

The Tokenizer API is a hosted REST service that deploys and manages ERC-20 and ERC-721 tokens through the Moonwell Factory. Call it over HTTPS with a JWT or API key — you do not need to run the API on your machine.

Base URL

All endpoints are relative to the production API host:

https://api-rho-gold-msx2gnbkee.vercel.app

Quick start

Create an account and receive a JWT:

bash
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 Authentication for sign-in, API keys, and plan details.

Explore interactively

The live API exposes OpenAPI documentation you can browse or import into API clients:

  • Swagger UIhttps://api-rho-gold-msx2gnbkee.vercel.app/openapi
  • OpenAPI JSONhttps://api-rho-gold-msx2gnbkee.vercel.app/openapi/json

See OpenAPI reference for the full spec and security scheme.

Typical workflow

  1. Sign up or sign in
  2. Optionally create an API key for programmatic access
  3. Deploy a token (POST /tokens)
  4. Mint tokens and set metadata (host images externally first)
  5. Verify via the token URI resolver

Next steps