Authentication is a critical component of securing access to Nova API endpoints. Nova API follows standard authentication protocols to ensure only authorized users can interact with its services.

Overview

Nova API supports multiple authentication methods, including:

  • OAuth 2.0 🔄
  • API Key 🔑
  • Token-Based Authentication 🎉

For detailed implementation guides, refer to our Authentication Guide.

Authentication Flow

  1. Request Authorization 📈
    Send a request to the /auth endpoint with your credentials.
  2. Receive Token
    Upon successful validation, you'll get an access token.
  3. Use Token 🧾
    Include the token in the Authorization header for subsequent requests.

OAuth 2 0

API Documentation

For comprehensive details on Nova API authentication, visit our Nova API Docs.

Common Issues

  • Invalid Token
    Ensure your token is correctly formatted and has not expired.
  • Missing Headers ⚠️
    Always include the Authorization header with your token.

Access Token