Authentication & Authorization 🔐
All API endpoints require authentication and are protected by JWT (JSON Web Tokens) to ensure secure access to resources. To access these endpoints, you must include a valid JWT token in the Authorization header of your HTTP request.
Obtaining a JWT Token
-
Contact Support or Company Representative: To receive a JWT token, please reach out to our support team or our company representative. They will guide you through the process of obtaining a token based on your use case and access level.
-
Token Issuance: Upon verifying your request, a JWT token will be issued to you. This token will serve as your credential for accessing the protected endpoints.
Using the JWT Token
Once you have obtained your JWT token, you must include it in the Authorization header of each API request you make. The token should be prefixed with the word Bearer
, followed by a space.
Example of Including JWT Token in Header
GET https://api.hiveon.ai/api/endpoint HTTP/1.1
Host: api.hiveon.ai
Authorization: Bearer <your_jwt_token>
Replace <your_jwt_token>
with the JWT token you received from support or our company representative.