Authentication is a crucial aspect of the developer portal. Below are the endpoints available for authentication:

  • POST /api/v1/login
    This endpoint is used to authenticate users. It requires a username and password.

  • POST /api/v1/register
    New developers can register using this endpoint. It requires a username, password, and email.

  • GET /api/v1/logout
    This endpoint is used to log out a user.

  • GET /api/v1/refresh_token
    To maintain a session, use this endpoint to refresh the access token.

For more detailed information and usage examples, visit our API Reference.

Authentication Flow Diagram

Remember to always keep your credentials secure and follow best practices for password management.