Authentication

All requests must include the Alloy API key you created in the dashboard.

Authorization Header

Include the following header in all API requests:

Authorization: Bearer alloy_<your_key>

Replace <your_key> with your actual API key from the Alloy dashboard.

Example

curl
curl -X POST https://api.example.com/api/dashboard/generate/ \
  -H "Authorization: Bearer alloy_yourapikey" \
  -F "file_type=csv" \
  -F "[email protected]"

Getting Your API Key

1

Log in to your Alloy dashboard

Sign in to your account.

2

Open the API settings page in the dashboard.

3

Create a new API key

Generate a new key from the API settings.

4

Copy the key

Copy the generated key (it will start with alloy_) and store it securely.

Last updated