Authentication
Learn how to authenticate your API requests
VeendHQ Platform authenticates your API requests using an Access Token which can be generated from your dashboard. All API calls must include the Access Token. API requests made without Access Token will fail with the status code
401: Unauthorized.
Once you have completed the sign up process and the KYC requirements, we will provide a Access Token which is accessible via the VeendHQ dashboard - Dashboard > Settings > Developers. Follow the steps below to access them:
- Navigate to Settings (on the sidebar)
- Developers

Developer Settings
You can generate a new Access Token via the Dashboard UI or via an authenticated API Request.
Dashboard Settings
API Request
You can also generate a new Access Token by clicking on the
Generate New Token
button on the dashboard - Dashboard > Settings > Developers.
You can authenticate your requests by including the Access Token in the Authorization header.
Authenticating a request should be in the following format:
Authorization: Bearer SECRET_KEY
x-tag: sandbox
x-tag value should be either test or live depending on the environment you are making the API request.
Last modified 4mo ago