Finding Your API Key
- Navigate to the API Keys section of your BLACKBOX dashboard.
- Your API key will be displayed on this page.
- Click the copy icon to copy the key to your clipboard.
Important: Treat your API key like a password! Do not share it publicly
or commit it to version control.
Making Authenticated Requests
To authenticate your API calls, you must include your API key in theAuthorization
header of your request. The header should be formatted as follows:
Authorization: Bearer YOUR_API_KEY
Replace YOUR_API_KEY
with the key you copied from your dashboard.