Authentication
Most NeuralVerge API endpoints require a bearer token.Authorization header
Send your access token in this format:Authorization: Bearer YOUR_ACCESS_TOKEN
Common headers
For mostPOST requests, include:
Authorization: Bearer YOUR_ACCESS_TOKENContent-Type: application/json
Example request
When you get 401 Unauthorized
A request can fail with 401 when:
- the
Authorizationheader is missing - the token format is invalid
- the token has expired
- the token does not have access to the requested resource
Best practices
- Do not expose private tokens in public frontend code
- Store tokens in a secure backend environment
- Avoid logging full tokens
- Use separate credentials for different integrations when needed