Complete reference for the Api's Mazvall REST API. Base URL: https://api-mazval.zone.id
1. Register an account
2. Generate an API key
3. Validate your key
All protected endpoints require a Bearer token in the Authorization header. Obtain a token via /api/auth/login or /api/auth/register.
| Tier | Requests/Minute | Requests/Hour | Requests/Day |
|---|---|---|---|
| Free | 10 | 100 | 1,000 |
| Developer | 60 | 2,000 | 20,000 |
| Enterprise | 300 | 10,000 | 100,000 |
Create a new user account
{ "email": "user@example.com", "password": "secret123", "name": "John" }{ "success": true, "data": { "user": { "id": "...", "email": "user@example.com", "name": "John", "role": "user", "tier": "free" }, "token": "eyJhbG..." } }All API keys follow the format MVAL-XXXXXXXXXXXX where X is a 12-character alphanumeric string.