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
- Request Authorization 📈
Send a request to the/auth
endpoint with your credentials. - Receive Token ✅
Upon successful validation, you'll get an access token. - Use Token 🧾
Include the token in theAuthorization
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 theAuthorization
header with your token.
Access Token