API Access
MakerVera provides a REST API that powers the dashboard and is available for third-party integrations.
API Documentation
Section titled “API Documentation”Interactive API documentation is available at two endpoints:
| Endpoint | Format | Best For |
|---|---|---|
/docs | ReDoc | Reading and exploring the API. Clean, searchable, and easy to navigate. |
/swagger | Swagger UI | Testing API calls directly in the browser. Includes a “Try it out” feature for sending requests. |
Both endpoints are publicly accessible and do not require authentication to view.
The raw OpenAPI schema is also available at /openapi.json if you need it for code generation or importing into tools like Postman.
Production URLs
Section titled “Production URLs”- ReDoc:
https://api.makervera.com/docs - Swagger UI:
https://api.makervera.com/swagger - OpenAPI Schema:
https://api.makervera.com/openapi.json
Authentication
Section titled “Authentication”API Keys
Section titled “API Keys”API access requires an API key. Include your key in the x-api-key header with every request:
GET /users/meHost: api.makervera.comx-api-key: your-api-key-hereAPI key management is coming soon. Once available, administrators will be able to generate and revoke API keys from the dashboard under Settings > API Keys.
Bearer Tokens
Section titled “Bearer Tokens”Authenticated dashboard users can also make API calls using their session’s bearer token in the Authorization header. This is how the dashboard communicates with the API internally.
GET /users/meHost: api.makervera.comAuthorization: Bearer <token>Rate Limits
Section titled “Rate Limits”Rate limits may apply to API requests. Details will be published here once API key management is available.