API guide 1
Authentication
Every public API request is authenticated with an API key generated in the AlgoLens platform.
2.1Create a key
- Sign in to AlgoLens.
- Open
Developer settingsand selectIntegration API keys. - Name the integration and create the key.
- Copy it immediately and store it in a secret manager.
2.2Send the key
Add the key as an X-API-Key header:
X-API-Key: algo_live_your_keyExample request
curl "https://api.algolens.tech/api/v1/market/pulse" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Accept: application/json"2.3Keep keys safe
- Use an environment variable or server-side secret manager.
- Use a separate key for each application and environment.
- Never send a key in a query string, frontend bundle, source repository, log or screenshot.
- Revoke an exposed or unused key immediately.
AlgoLens developer documentationAPI guide 1 · Authentication