The BrightSDK tools authenticate with the releases API using an API key. Follow these steps to create one.
Log in to the BrightSDK Control Panel — this links directly to the API keys section.
Click + Add. Choose an expiration (e.g. One year), give the key a descriptive name, then click Generate key.
The generated key is shown once only — copy it immediately.
macOS / Linux — export in your shell:
export SDK_API_KEY=<your-api-key>
To persist across sessions:
echo 'export SDK_API_KEY=<your-api-key>' >> ~/.zshrc
Windows (PowerShell) — set for the current session:
$env:SDK_API_KEY = "<your-api-key>"
To persist for your user (survives reboots):
[Environment]::SetEnvironmentVariable("SDK_API_KEY", "<your-api-key>", "User")
Windows (CMD) — set for the current session:
set SDK_API_KEY=<your-api-key>
To persist for your user (survives reboots):
setx SDK_API_KEY "<your-api-key>"