Skip to main content

API Keys

Create and manage API keys for programmatic access.

Creating an API Key

  1. Navigate to Settings > API Keys
  2. Click Create API Key
  3. Enter a descriptive name
  4. Select the required scopes
  5. Click Create
  6. Copy the key immediately (it won't be shown again)

Scopes

ScopeDescription
signals:writeSubmit trading signals
signals:readView signal history
accounts:readView account information
orders:readView orders
orders:writePlace and cancel orders

Using API Keys

Include the key in the X-API-Key header:

curl -X POST https://api.example.com/api/signals/ingest \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '...'

Security Best Practices

  • Never share API keys or commit them to source control
  • Use environment variables to store keys
  • Create separate keys for different integrations
  • Regularly rotate keys
  • Use minimum required scopes