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 -X POST https://api.example.com/api/dashboard/generate/ \
-H "Authorization: Bearer alloy_yourapikey" \
-F "file_type=csv" \
-F "[email protected]"Without this header the API responds with 401 Unauthorized.
Getting Your API Key
Important: Keep your API key secure and never commit it to version control.
Last updated