Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt

Use this file to discover all available pages before exploring further.

Authentication

All requests to the Neuron API must be authenticated. The API supports Bearer token authentication via API keys.

API keys

Generate an API key from your Neuro dashboard under Settings → API Keys.

Using your API key

Include your API key in the Authorization header of every request:
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.neuro-tech.io/v1/resource

Security best practices

  • Never expose your API key in client-side code or public repositories.
  • Rotate keys regularly and revoke unused keys.
  • Use environment variables to store keys in your applications.
  • Restrict key permissions to only the scopes your integration needs.

Token expiry

API keys do not expire by default, but you can set expiry dates from the dashboard. Expired tokens return a 401 Unauthorized response.
See Security and Transport for additional recommendations on keeping your integration secure.