Authorization header. Every request to the API must include a valid key. This page explains how to generate keys, pass them in requests, and manage them securely.
Generate an API key
- Log in to your ELUUP AI account at app.eluup.ai
- Go to Settings > API Keys
- Click Generate Key
- Enter a descriptive name (for example, “Production Trading Bot”)
- Select the scope you need (see below)
- Copy the key immediately. It is shown only once.
Pass your API key
Include your key in theAuthorization header on every request as a Bearer token.
401 Unauthorized response:
Key scopes
API keys can have one of two scopes. Choose the minimum scope needed for your integration.
When generating a key, select the scope that matches your use case. A read-only key is appropriate for dashboards and analytics. A full-access key is required for deploying and controlling trading agents.
Rotate your API key
To rotate a key:- Go to Settings > API Keys in the ELUUP AI dashboard
- Find the key you want to rotate
- Click Revoke to invalidate it immediately
- Generate a new key with the same scope
- Update your application to use the new key
401 Unauthorized response.
Environment variables
Never hardcode API keys in your source code. Load them from environment variables instead.If you are building a client-side application, proxy API requests through your own backend. Exposing an API key in browser or mobile code puts your account and funds at risk.