Ir al contenido

API Access

Esta página aún no está disponible en tu idioma.

MakerVera provides a REST API that powers the dashboard and is available for third-party integrations.

Interactive API documentation is available at two endpoints:

EndpointFormatBest For
/docsReDocReading and exploring the API. Clean, searchable, and easy to navigate.
/swaggerSwagger UITesting 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.

  • ReDoc: https://api.makervera.com/docs
  • Swagger UI: https://api.makervera.com/swagger
  • OpenAPI Schema: https://api.makervera.com/openapi.json

API access requires an API key. Include your key in the x-api-key header with every request:

GET /users/me
Host: api.makervera.com
x-api-key: your-api-key-here

API key management is coming soon. Once available, administrators will be able to generate and revoke API keys from the dashboard under Settings > API Keys.

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/me
Host: api.makervera.com
Authorization: Bearer <token>

Rate limits may apply to API requests. Details will be published here once API key management is available.