Appearance
For LLMs
This section helps AI agents integrate with the Tokenizer API efficiently.
Base URL
https://api-rho-gold-msx2gnbkee.vercel.appAuthentication
All protected endpoints require:
Authorization: Bearer <token>Obtain a token via POST /auth/signup or POST /auth/signin. For long-lived access, create an API key via POST /api-keys (prefix mw_).
Recommended call order
POST /auth/signup— create account, save JWTPOST /api-keys— optional, create programmatic keyGET /stats— check mint quotaPOST /tokens— deploy ERC-20 or ERC-721POST /tokens/:address/mint— mint to recipient- Host image on IPFS or CDN — save URI
PUT /tokens/:address/metadata— set structured metadata with image URIGET /tokenURI/:address/:tokenId?— verify public JSON
Error format
json
{
"code": "ERROR_CODE",
"message": "Human-readable description"
}Common codes: UNAUTHORIZED, FORBIDDEN, NOT_FOUND, QUOTA_EXCEEDED, VALIDATION_ERROR, CHAIN_ERROR.
Machine-readable resources
| Resource | URL |
|---|---|
| LLM index | /llms.txt |
| Full API context | /llms-full.txt |
| OpenAPI JSON | https://api-rho-gold-msx2gnbkee.vercel.app/openapi/json |
| Condensed reference | context.md |
Copy Full Context or fetch /llms-full.txt into your system prompt for complete endpoint coverage.
Content-Type notes
- JSON endpoints:
Content-Type: application/json