Appearance
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.appQuick 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 UI —
https://api-rho-gold-msx2gnbkee.vercel.app/openapi - OpenAPI JSON —
https://api-rho-gold-msx2gnbkee.vercel.app/openapi/json
See OpenAPI reference for the full spec and security scheme.
Typical workflow
- Sign up or sign in
- Optionally create an API key for programmatic access
- Deploy a token (
POST /tokens) - Mint tokens and set metadata (host images externally first)
- Verify via the token URI resolver
Next steps
- Authentication — JWT tokens and API keys
- Error handling — Error codes and HTTP status mapping