All API requests require a Bearer token in the Authorization header.
Get your API key
- Go to dashboard.floom.dev/settings
- Click Create API Key
- Copy the key (starts with
floom_)
API keys are shown once. Store it securely. If lost, revoke and create a new one.
Use the key
Add this header to every request:
Authorization: Bearer floom_YOUR_API_KEY
Example:
curl -X GET "https://dashboard.floom.dev/api/automations" \
-H "Authorization: Bearer floom_YOUR_API_KEY"
Key storage for AI agents
The floom skill stores the key at ~/.claude/floom-config.json:
{
"api_key": "floom_YOUR_KEY",
"platform_url": "https://dashboard.floom.dev"
}
Error responses
| Status | Meaning |
|---|
401 | Missing or invalid API key |
401 | API key has been revoked |
403 | Key valid but no access to this resource |